You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- if workspace or agent start with error, we report the workspace as
started with errors and highlight the text with red.
- the workspace is still marked as reachable even though it is unhealthy
but we no longer connect automatically to the workspace via ssh when
user selects the workspace from the env list.
Copy file name to clipboardExpand all lines: src/main/kotlin/com/coder/toolbox/util/CoderProtocolHandler.kt
+2-2
Original file line number
Diff line number
Diff line change
@@ -144,8 +144,8 @@ open class CoderProtocolHandler(
144
144
val status =WorkspaceAndAgentStatus.from(workspace, agent)
145
145
146
146
if (!status.ready()) {
147
-
context.logger.error("Agent ${agent.name} for workspace $workspaceName from $deploymentURL is not started")
148
-
context.showErrorPopup(MissingArgumentException("Can't handle URI because agent ${agent.name} for workspace $workspaceName from $deploymentURL is not started"))
147
+
context.logger.error("Agent ${agent.name} for workspace $workspaceName from $deploymentURL is not ready")
148
+
context.showErrorPopup(MissingArgumentException("Can't handle URI because agent ${agent.name} for workspace $workspaceName from $deploymentURL is not ready"))
0 commit comments