Skip to content

Commit e805ef3

Browse files
Merge pull request #1769 from github/robertbrignull/liveResults_true
Make live results enabled for everyone
2 parents 25b9aeb + 1e76e58 commit e805ef3

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

extensions/ql-vscode/src/config.ts

+1-7
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)