Skip to content

Commit

Permalink
Don't call bqrsInfo with a page size of 0
Browse files Browse the repository at this point in the history
  • Loading branch information
alexet committed Dec 10, 2024
1 parent f0170e2 commit ab35550
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/ql-vscode/src/run-queries-shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ export class QueryEvaluationInfo extends QueryOutputDir {
*/
async chooseResultSet(cliServer: CodeQLCliServer) {
const resultSets = (
await cliServer.bqrsInfo(this.resultsPaths.resultsPath, 0)
await cliServer.bqrsInfo(this.resultsPaths.resultsPath)
)["result-sets"];
if (!resultSets.length) {
return undefined;
Expand Down

0 comments on commit ab35550

Please sign in to comment.