File tree 1 file changed +3
-3
lines changed
components/ide/jetbrains/toolbox/src/main/kotlin/io/gitpod/toolbox/gateway
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ class GitpodRemoteProvider(
59
59
Utils .observablePropertiesFactory
60
60
)
61
61
environmentMap[connectParams.uniqueID] = Pair (workspace, env)
62
- consumer.consumeEnvironments(environmentMap.values.map { it.second }, false )
62
+ consumer.consumeEnvironments(environmentMap.values.map { it.second }, true )
63
63
}
64
64
val joinLinkInfo = publicApi.fetchJoinLink2Info(workspaceId, workspace!! .getIDEUrl())
65
65
// TODO(hw): verify if it's working
@@ -75,7 +75,7 @@ class GitpodRemoteProvider(
75
75
Utils .coroutineScope.launch {
76
76
val workspaces = publicApi.listWorkspaces()
77
77
if (workspaces.isEmpty()) {
78
- consumer.consumeEnvironments(emptyList(), false )
78
+ consumer.consumeEnvironments(emptyList(), true )
79
79
return @launch
80
80
}
81
81
consumer.consumeEnvironments(workspaces.map {
@@ -91,7 +91,7 @@ class GitpodRemoteProvider(
91
91
pendingConnectParams = null
92
92
}
93
93
env
94
- }, false )
94
+ }, true )
95
95
}
96
96
}
97
97
You can’t perform that action at this time.
0 commit comments