File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed
src/main/kotlin/com/coder/toolbox Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 44
55### Fixed
66
7- - outdated and stopped workspaces are now updated and started when handling URI
7+ - ` Stop ` action is now available for running workspaces that have an out of date template.
8+ - outdated and stopped workspaces are now updated and started when handling URI
89
910## 0.3.0 - 2025-06-10
1011
Original file line number Diff line number Diff line change @@ -126,16 +126,15 @@ class CoderRemoteEnvironment(
126126 update(workspace.copy(latestBuild = build), agent)
127127 }
128128 })
129- } else {
130- actions.add(Action (context.i18n.ptrl(" Stop" )) {
131- context.cs.launch {
132- tryStopSshConnection()
133-
134- val build = client.stopWorkspace(workspace)
135- update(workspace.copy(latestBuild = build), agent)
136- }
137- })
138129 }
130+ actions.add(Action (context.i18n.ptrl(" Stop" )) {
131+ context.cs.launch {
132+ tryStopSshConnection()
133+
134+ val build = client.stopWorkspace(workspace)
135+ update(workspace.copy(latestBuild = build), agent)
136+ }
137+ })
139138 }
140139 return actions
141140 }
You can’t perform that action at this time.
0 commit comments