Revert "Make github-authentication a UI extension again"

This reverts commit cd55420e7e.

This change seems to have caused issues activating extensions
This commit is contained in:
Matt Bierner
2020-08-24 20:19:58 -07:00
parent 4e96ceff54
commit 8ba70d8bdc
7 changed files with 11 additions and 35 deletions

View File

@@ -686,11 +686,7 @@ export abstract class AbstractExtHostExtensionService extends Disposable impleme
return this._startExtensionHost();
}
public $activateByEvent(activationEvent: string, eager: boolean = true): Promise<void> {
if (eager) {
return this._activateByEvent(activationEvent, false);
}
public $activateByEvent(activationEvent: string): Promise<void> {
return (
this._readyToRunExtensions.wait()
.then(_ => this._activateByEvent(activationEvent, false))