Skip to content

Commit 4f501e3

Browse files
committed
Remove installing extensions notification
1 parent 4e8c6f0 commit 4f501e3

File tree

1 file changed

+9
-14
lines changed

1 file changed

+9
-14
lines changed

src/remoteConnector.ts

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1070,20 +1070,15 @@ export default class RemoteConnector extends Disposable {
10701070
}
10711071

10721072
try {
1073-
await vscode.window.withProgress<void>({
1074-
title: 'Installing local extensions on remote',
1075-
location: vscode.ProgressLocation.Notification
1076-
}, async () => {
1077-
try {
1078-
this.logger.trace(`Installing local extensions on remote: `, extensions.map(e => e.identifier.id).join('\n'));
1079-
await retry(async () => {
1080-
await vscode.commands.executeCommand('__gitpod.initializeRemoteExtensions', extensions);
1081-
}, 3000, 15);
1082-
} catch (e) {
1083-
this.logger.error(`Could not execute '__gitpod.initializeRemoteExtensions' command`);
1084-
throw e;
1085-
}
1086-
});
1073+
try {
1074+
this.logger.trace(`Installing local extensions on remote: `, extensions.map(e => e.identifier.id).join('\n'));
1075+
await retry(async () => {
1076+
await vscode.commands.executeCommand('__gitpod.initializeRemoteExtensions', extensions);
1077+
}, 3000, 15);
1078+
} catch (e) {
1079+
this.logger.error(`Could not execute '__gitpod.initializeRemoteExtensions' command`);
1080+
throw e;
1081+
}
10871082
this.telemetry.sendUserFlowStatus('synced', flow);
10881083
} catch {
10891084
const msg = `Error while installing local extensions on remote.`;

0 commit comments

Comments
 (0)