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 asstarted with errors and highlight the text with red.- the workspace is still marked as reachable even though it is unhealthybut we no longer connect automatically to the workspace via ssh whenuser selects the workspace from the env list.
Copy file name to clipboardExpand all lines: src/main/kotlin/com/coder/toolbox/util/CoderProtocolHandler.kt
+2-2Lines changed: 2 additions & 2 deletions
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 notstarted")
148
-
context.showErrorPopup(MissingArgumentException("Can't handle URI because agent${agent.name} for workspace$workspaceName from$deploymentURL is notstarted"))
147
+
context.logger.error("Agent${agent.name} for workspace$workspaceName from$deploymentURL is notready")
148
+
context.showErrorPopup(MissingArgumentException("Can't handle URI because agent${agent.name} for workspace$workspaceName from$deploymentURL is notready"))