Skip to content

Commit 9642adb

Browse files
authored
configuration: experiments to the ready phase to allow resolver use (microsoft#196515)
We tried to run an experiment with Remote SSH this iteration, but it did not work since the assignment 'overlay' was only added once the workbench is retored, which is after the RA is resolved. Instead, move it a bit earlier so we can experiment at this point in the lifecycle.
1 parent fbf2eb9 commit 9642adb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/services/configuration/browser/configurationService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1341,7 +1341,7 @@ class UpdateExperimentalSettingsDefaults extends Disposable implements IWorkbenc
13411341
const workbenchContributionsRegistry = Registry.as<IWorkbenchContributionsRegistry>(WorkbenchExtensions.Workbench);
13421342
workbenchContributionsRegistry.registerWorkbenchContribution(RegisterConfigurationSchemasContribution, LifecyclePhase.Restored);
13431343
workbenchContributionsRegistry.registerWorkbenchContribution(ResetConfigurationDefaultsOverridesCache, LifecyclePhase.Eventually);
1344-
workbenchContributionsRegistry.registerWorkbenchContribution(UpdateExperimentalSettingsDefaults, LifecyclePhase.Restored);
1344+
workbenchContributionsRegistry.registerWorkbenchContribution(UpdateExperimentalSettingsDefaults, LifecyclePhase.Ready);
13451345

13461346
const configurationRegistry = Registry.as<IConfigurationRegistry>(Extensions.Configuration);
13471347
configurationRegistry.registerConfiguration({

0 commit comments

Comments
 (0)