File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 3
3
"displayName" : " Gitpod" ,
4
4
"description" : " Gitpod Support" ,
5
5
"publisher" : " gitpod" ,
6
- "version" : " 0.0.111 " ,
7
- "daemonVersion" : " 0.0.8 " ,
6
+ "version" : " 0.0.112 " ,
7
+ "daemonVersion" : " 0.0.9 " ,
8
8
"license" : " MIT" ,
9
9
"icon" : " resources/gitpod.png" ,
10
10
"repository" : {
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ class WebSocketSSHProxy {
155
155
const workspaceInfo = await this . retryGetWorkspaceInfo ( username ) ;
156
156
flow . instanceId = workspaceInfo . instanceId ;
157
157
flow . userId = workspaceInfo . userId ;
158
- if ( workspaceInfo . phase !== 'running' ) {
158
+ if ( workspaceInfo . phase && workspaceInfo . phase !== '' && workspaceInfo . phase !== 'running' ) {
159
159
throw new FailedToProxyError ( 'NoRunningInstance' )
160
160
}
161
161
You can’t perform that action at this time.
0 commit comments