Skip to content

Commit 4bfefb8

Browse files
authored
Merge pull request #1841 from github/koesie10/fix-monitor-await
Fix incorrect await for monitor
2 parents a5fcfe7 + 6f52469 commit 4bfefb8

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

extensions/ql-vscode/src/remote-queries/remote-queries-manager.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,7 @@ export class RemoteQueriesManager extends DisposableObject {
125125
} else if (status === QueryStatus.InProgress) {
126126
// In this case, last time we checked, the query was still in progress.
127127
// We need to setup the monitor to check for completion.
128-
await commands.executeCommand(
129-
"codeQL.monitorRemoteQuery",
130-
queryId,
131-
query,
132-
);
128+
void commands.executeCommand("codeQL.monitorRemoteQuery", queryId, query);
133129
}
134130
}
135131

0 commit comments

Comments
 (0)