We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25b9aeb commit 1e76e58Copy full SHA for 1e76e58
extensions/ql-vscode/src/config.ts
@@ -554,14 +554,8 @@ export function isIntegrationTestMode() {
554
return process.env.INTEGRATION_TEST_MODE === "true";
555
}
556
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
-
563
export function isVariantAnalysisLiveResultsEnabled(): boolean {
564
- return !!LIVE_RESULTS.getValue<boolean>();
+ return true;
565
566
567
/**
0 commit comments