File tree Expand file tree Collapse file tree 1 file changed +9
-14
lines changed Expand file tree Collapse file tree 1 file changed +9
-14
lines changed Original file line number Diff line number Diff line change @@ -1070,20 +1070,15 @@ export default class RemoteConnector extends Disposable {
1070
1070
}
1071
1071
1072
1072
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
+ }
1087
1082
this . telemetry . sendUserFlowStatus ( 'synced' , flow ) ;
1088
1083
} catch {
1089
1084
const msg = `Error while installing local extensions on remote.` ;
You can’t perform that action at this time.
0 commit comments