Skip to content

Commit 7874856

Browse files
committed
💄
1 parent 9bac573 commit 7874856

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/remoteConnector.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -803,9 +803,9 @@ export default class RemoteConnector extends Disposable {
803803
await this.showSSHPasswordModal(password, params);
804804
}
805805

806-
this.telemetry.sendRawTelemetryEvent('vscode_desktop_ssh', { kind: 'gateway', status: 'connected', ...params, gitpodVersion: gitpodVersion.raw, auth: password ? 'password' : 'key', userOverride, openSSHVersion});
806+
this.telemetry.sendRawTelemetryEvent('vscode_desktop_ssh', { kind: 'gateway', status: 'connected', ...params, gitpodVersion: gitpodVersion.raw, auth: password ? 'password' : 'key', userOverride, openSSHVersion });
807807
} catch (e) {
808-
this.telemetry.sendRawTelemetryEvent('vscode_desktop_ssh', { kind: 'gateway', status: 'failed', reason: e.toString(), ...params, gitpodVersion: gitpodVersion.raw, userOverride, openSSHVersion});
808+
this.telemetry.sendRawTelemetryEvent('vscode_desktop_ssh', { kind: 'gateway', status: 'failed', reason: e.toString(), ...params, gitpodVersion: gitpodVersion.raw, userOverride, openSSHVersion });
809809
if (e instanceof NoSSHGatewayError) {
810810
this.logger.error('No SSH gateway:', e);
811811
vscode.window.showWarningMessage(`${e.host} does not support [direct SSH access](https://github.com/gitpod-io/gitpod/blob/main/install/installer/docs/workspace-ssh-access.md), connecting via the deprecated SSH tunnel over WebSocket.`);
@@ -936,17 +936,17 @@ export default class RemoteConnector extends Disposable {
936936
const action = await vscode.window.showInformationMessage(`Could not install local extensions on remote workspace, please enable Settings Sync with Gitpod.`, addSyncProvider, config);
937937
if (action === addSyncProvider) {
938938
vscode.commands.executeCommand('gitpod.syncProvider.add');
939-
} else if(action === config) {
940-
vscode.commands.executeCommand('workbench.action.openSettings',`@ext:${this.context.extension.id} sync extensions`);
939+
} else if (action === config) {
940+
vscode.commands.executeCommand('workbench.action.openSettings', `@ext:${this.context.extension.id} sync extensions`);
941941
}
942942
} else if (e instanceof NoSettingsSyncSession) {
943943
const enableSettingsSync = 'Enable Settings Sync';
944944
const config = 'Configure';
945945
const action = await vscode.window.showInformationMessage(`Could not install local extensions on remote workspace, please enable Settings Sync.`, enableSettingsSync, config);
946946
if (action === enableSettingsSync) {
947947
vscode.commands.executeCommand('workbench.userDataSync.actions.turnOn');
948-
} else if(action === config) {
949-
vscode.commands.executeCommand('workbench.action.openSettings',`@ext:${this.context.extension.id} sync extensions`);
948+
} else if (action === config) {
949+
vscode.commands.executeCommand('workbench.action.openSettings', `@ext:${this.context.extension.id} sync extensions`);
950950
}
951951
} else {
952952
this.logger.error('Error while fetching settings sync extension data:', e);

0 commit comments

Comments
 (0)