Skip to content

Commit a04ade1

Browse files
committed
🆙 bump version to bring compatible to old extension ipc
1 parent 3656260 commit a04ade1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"displayName": "Gitpod",
44
"description": "Gitpod Support",
55
"publisher": "gitpod",
6-
"version": "0.0.111",
7-
"daemonVersion": "0.0.8",
6+
"version": "0.0.112",
7+
"daemonVersion": "0.0.9",
88
"license": "MIT",
99
"icon": "resources/gitpod.png",
1010
"repository": {

src/local-ssh/proxy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ class WebSocketSSHProxy {
155155
const workspaceInfo = await this.retryGetWorkspaceInfo(username);
156156
flow.instanceId = workspaceInfo.instanceId;
157157
flow.userId = workspaceInfo.userId;
158-
if (workspaceInfo.phase !== 'running') {
158+
if (workspaceInfo.phase && workspaceInfo.phase !== '' && workspaceInfo.phase !== 'running') {
159159
throw new FailedToProxyError('NoRunningInstance')
160160
}
161161

0 commit comments

Comments
 (0)