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 4
4
5
5
### Fixed
6
6
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
8
9
9
10
## 0.3.0 - 2025-06-10
10
11
Original file line number Diff line number Diff line change @@ -126,16 +126,15 @@ class CoderRemoteEnvironment(
126
126
update(workspace.copy(latestBuild = build), agent)
127
127
}
128
128
})
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
- })
138
129
}
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
+ })
139
138
}
140
139
return actions
141
140
}
You can’t perform that action at this time.
0 commit comments