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 a0cd4b3 commit c661d0eCopy full SHA for c661d0e
src/vs/workbench/services/configuration/browser/configurationService.ts
@@ -1353,7 +1353,10 @@ class ConfigurationDefaultOverridesContribution extends Disposable implements IW
1353
1354
this.autoRefetchExperimentalSettingsScheduler = new RunOnceScheduler(() => {
1355
this.processExperimentalSettings(this.autoRefetchExperimentalSettings, true);
1356
- this.autoRefetchExperimentalSettingsScheduler.schedule();
+ if (ASSIGNMENT_REFETCH_INTERVAL !== 0) {
1357
+ // TODO@sandy081 wait for the promise returned by processExperimentalSettings to avoid unbounded queuing
1358
+ this.autoRefetchExperimentalSettingsScheduler.schedule();
1359
+ }
1360
}, ASSIGNMENT_REFETCH_INTERVAL);
1361
1362
this.updateDefaults();
0 commit comments