Skip to content

Commit 1e76e58

Browse files
Make live results enabled for everyone
1 parent 25b9aeb commit 1e76e58

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

extensions/ql-vscode/src/config.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -554,14 +554,8 @@ export function isIntegrationTestMode() {
554554
return process.env.INTEGRATION_TEST_MODE === "true";
555555
}
556556

557-
/**
558-
* A flag indicating whether to enable the experimental "live results" feature
559-
* for multi-repo variant analyses.
560-
*/
561-
const LIVE_RESULTS = new Setting("liveResults", REMOTE_QUERIES_SETTING);
562-
563557
export function isVariantAnalysisLiveResultsEnabled(): boolean {
564-
return !!LIVE_RESULTS.getValue<boolean>();
558+
return true;
565559
}
566560

567561
/**

0 commit comments

Comments
 (0)