Skip to content

Commit d77f516

Browse files
committed
Don't report workspace id
1 parent 6396314 commit d77f516

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/remote.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,24 +22,24 @@ export interface WorkspaceRestartInfo {
2222
export class NoRunningInstanceError extends Error {
2323
code = 'NoRunningInstanceError';
2424
constructor(readonly workspaceId: string, readonly phase?: string) {
25-
super(`Failed to connect to ${workspaceId} Gitpod workspace, workspace not running: ${phase}`);
26-
this.name = 'NoRunningInstanceError'
25+
super(`Failed to connect to Gitpod workspace, workspace not running: ${phase}`);
26+
this.name = 'NoRunningInstanceError';
2727
}
2828
}
2929

3030
export class NoSSHGatewayError extends Error {
3131
code = 'NoSSHGatewayError';
3232
constructor(readonly host: string) {
3333
super(`SSH gateway not configured for this Gitpod Host ${host}`);
34-
this.name = 'NoSSHGatewayError'
34+
this.name = 'NoSSHGatewayError';
3535
}
3636
}
3737

3838
export class NoExtensionIPCServerError extends Error {
3939
code = 'NoExtensionIPCServer';
4040
constructor() {
4141
super('No Extension IPC Server running');
42-
this.name = 'NoExtensionIPCServerError'
42+
this.name = 'NoExtensionIPCServerError';
4343
}
4444
}
4545

0 commit comments

Comments
 (0)