Skip to content

Commit c8b4dfd

Browse files
author
Benjamin Pasero
committed
Load extension host after workbench is running phase (fixes microsoft#38323)
1 parent 2fd817b commit c8b4dfd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/vs/workbench/services/extensions/electron-browser/extensionService.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,9 @@ export class ExtensionService implements IExtensionService {
104104
this._extensionHostProcessCustomers = [];
105105
this._extensionHostProcessProxy = null;
106106

107-
lifecycleService.when(LifecyclePhase.Restoring).then(() => {
107+
lifecycleService.when(LifecyclePhase.Running).then(() => {
108108
// delay extension host creation and extension scanning
109-
// until after the editors/panels are restored
109+
// until after workbench is running
110110
this._startExtensionHostProcess([]);
111111
this._scanAndHandleExtensions();
112112
});

0 commit comments

Comments
 (0)