No need to throw, $setRemoteEnvironment is only meant for the remote extension host

This commit is contained in:
Alex Dima 2021-08-23 14:13:08 +02:00
parent ae6c81fbea
commit 8a0ef4107e
No known key found for this signature in database
GPG key ID: 6E58D7B045760DA0

View file

@ -153,7 +153,7 @@ export class ExtHostExtensionService extends AbstractExtHostExtensionService {
}
async $setRemoteEnvironment(_env: { [key: string]: string | null }): Promise<void> {
throw new Error('Not supported');
return;
}
private async _waitForDebuggerAttachment(waitTimeout = 5000) {