Skip to content

Commit 56635b9

Browse files
committed
💄
1 parent b3c073c commit 56635b9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/remoteConnector.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1077,7 +1077,7 @@ export default class RemoteConnector extends Disposable {
10771077
const workspaceUrl = new URL(connectionInfo.gitpodHost);
10781078
workspaceUrl.pathname = '/start';
10791079
workspaceUrl.hash = connectionInfo.workspaceId;
1080-
this.showWsNotRunningDialog(connectionInfo.workspaceId, workspaceUrl.toString(), remoteFlow)
1080+
this.showWsNotRunningDialog(connectionInfo.workspaceId, workspaceUrl.toString(), remoteFlow);
10811081
return;
10821082
}
10831083
e.message = `Failed to resolve whole gitpod remote connection process: ${e.message}`;
@@ -1086,7 +1086,7 @@ export default class RemoteConnector extends Disposable {
10861086

10871087
this.logger.show();
10881088
const retry = 'Retry';
1089-
const action = await this.notifications.showErrorMessage(`Failed to resolve connection to Gitpod workspace: workspace could stop unexpectedly`, { flow: remoteFlow, id: uuid() }, retry);
1089+
const action = await this.notifications.showErrorMessage(`Failed to resolve connection to Gitpod workspace: workspace could stop unexpectedly`, { flow: remoteFlow, id: 'unexpected_error' }, retry);
10901090
if (action === retry) {
10911091
this.onGitpodRemoteConnection({ remoteAuthority, connectionInfo });
10921092
}
@@ -1098,7 +1098,7 @@ export default class RemoteConnector extends Disposable {
10981098
this.logger.warn(msg);
10991099

11001100
const openUrl = 'Restart workspace';
1101-
const resp = await this.notifications.showErrorMessage(msg, { id: uuid(), flow }, openUrl);
1101+
const resp = await this.notifications.showErrorMessage(msg, { id: 'ws_not_running', flow }, openUrl);
11021102
if (resp === openUrl) {
11031103
const opened = await vscode.env.openExternal(vscode.Uri.parse(workspaceUrl));
11041104
if (opened) {

0 commit comments

Comments
 (0)