We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3bd944 commit 9ed6d9eCopy full SHA for 9ed6d9e
src/main/kotlin/com/coder/gateway/views/steps/CoderWorkspacesStepView.kt
@@ -290,8 +290,17 @@ class CoderWorkspacesStepView(val enableNextButtonCallback: (Boolean) -> Unit) :
290
.toList()
291
}
292
} catch (e: Exception) {
293
- logger.error("Skipping workspace ${this.name} because we could not retrieve the agent(s). Reason: $e")
294
- emptyList()
+ logger.warn("Agent(s) for ${this.name} could not be retrieved. Reason: $e")
+ listOf(
295
+ WorkspaceAgentModel(
296
+ this.name,
297
+ this.templateName,
298
+ WorkspaceAgentStatus.from(this),
299
+ null,
300
301
+ null
302
+ )
303
304
305
306
0 commit comments