Skip to content

Commit 9251450

Browse files
💄
Co-authored-by: Filip Troníček <[email protected]>
1 parent e6b5362 commit 9251450

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/remoteConnector.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@ export default class RemoteConnector extends Disposable {
807807
this.telemetry.sendRawTelemetryEvent('vscode_desktop_ssh', { kind: 'gateway', status: 'failed', reason: e.toString(), ...params, gitpodVersion: gitpodVersion.raw, userOverride });
808808
if (e instanceof NoSSHGatewayError) {
809809
this.logger.error('No SSH gateway:', e);
810-
const ok = 'Ok';
810+
const ok = 'OK';
811811
const action = await 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.`, ok);
812812
if (action === ok) {
813813
// Do nothing and continue execution
@@ -816,7 +816,7 @@ export default class RemoteConnector extends Disposable {
816816
}
817817
} else if (e instanceof SSHError && e.message === 'Timed out while waiting for handshake') {
818818
this.logger.error('SSH test connection error:', e);
819-
const ok = 'Ok';
819+
const ok = 'OK';
820820
const action = await vscode.window.showWarningMessage(`Timed out while waiting for SSH handshake, it's possible SSH connections on port 22 are blocked or your network is too slow, connecting via the deprecated SSH tunnel over WebSocket.`, ok);
821821
if (action === ok) {
822822
// Do nothing and continue execution

0 commit comments

Comments
 (0)