Skip to content

Commit 7f9ea94

Browse files
author
Jackson Kearl
committed
Reduce default tas override delay to 0
1 parent 5c0c637 commit 7f9ea94

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/vs/workbench/services/experiment/common/experimentService.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,9 +202,8 @@ export class ExperimentService implements ITASExperimentService {
202202
this.tasClient = this.setupTASClient();
203203
}
204204

205-
// For development purposes, configure the delay until tas local tas treatment ovverrides are avilable
206-
// 2000ms is the default and represents approximately the p90 delay of reading from the tas service.
207-
const overrideDelay = this.configurationService.getValue<number>('experiments.overrideDelay') ?? 2000;
205+
// For development purposes, configure the delay until tas local tas treatment ovverrides are available
206+
const overrideDelay = this.configurationService.getValue<number>('experiments.overrideDelay') ?? 0;
208207
this.overrideInitDelay = new Promise(resolve => setTimeout(resolve, overrideDelay));
209208
}
210209

0 commit comments

Comments
 (0)