mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-10 00:35:30 +01:00
do not block shared process startup (#148639)
This commit is contained in:
@@ -333,7 +333,7 @@ class SharedProcessMain extends Disposable {
|
||||
environmentService,
|
||||
logService
|
||||
);
|
||||
await ptyHostService.initialize();
|
||||
ptyHostService.initialize();
|
||||
|
||||
// Terminal
|
||||
services.set(ILocalPtyService, this._register(ptyHostService));
|
||||
|
||||
@@ -104,8 +104,8 @@ export class PtyHostService extends Disposable implements IPtyService {
|
||||
}));
|
||||
}
|
||||
|
||||
async initialize(): Promise<void> {
|
||||
await this._refreshIgnoreProcessNames();
|
||||
initialize(): void {
|
||||
this._refreshIgnoreProcessNames();
|
||||
}
|
||||
|
||||
private get _ignoreProcessNames(): string[] {
|
||||
|
||||
Reference in New Issue
Block a user