Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion csharp/ql/src/Telemetry/ExternalApi.qll
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ private string nestedName(Declaration declaration) {
/**
* Gets the limit for the number of results produced by a telemetry query.
*/
int resultLimit() { result = 1000 }
int resultLimit() { result = 100 }

/**
* Holds if it is relevant to count usages of `api`.
Expand Down
2 changes: 1 addition & 1 deletion java/ql/src/Telemetry/ExternalApi.qll
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ deprecated class ExternalAPI = ExternalApi;
/**
* Gets the limit for the number of results produced by a telemetry query.
*/
int resultLimit() { result = 1000 }
int resultLimit() { result = 100 }

/**
* Holds if it is relevant to count usages of `api`.
Expand Down