Skip to content

Commit ff4ea3e

Browse files
committed
Exit early if variant analysis completes
1 parent e41b0ff commit ff4ea3e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

extensions/ql-vscode/src/remote-queries/variant-analysis-monitor.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@ export class VariantAnalysisMonitor {
6969
});
7070
}
7171

72+
if (variantAnalysisSummary.status === 'completed') {
73+
break;
74+
}
75+
7276
attemptCount++;
7377
}
7478

0 commit comments

Comments
 (0)