File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -157,13 +157,6 @@ func (r *RootCmd) scheduleStart() *serpent.Command {
157
157
return err
158
158
}
159
159
160
- // Autostart configuration is not supported for prebuilt workspaces.
161
- // Prebuild lifecycle is managed by the reconciliation loop, with scheduling behavior
162
- // defined per preset at the template level, not per workspace.
163
- if workspace .IsPrebuild {
164
- return xerrors .Errorf ("autostart configuration is not supported for prebuilt workspaces" )
165
- }
166
-
167
160
var schedStr * string
168
161
if inv .Args [1 ] != "manual" {
169
162
sched , err := parseCLISchedule (inv .Args [1 :]... )
@@ -212,13 +205,6 @@ func (r *RootCmd) scheduleStop() *serpent.Command {
212
205
return err
213
206
}
214
207
215
- // Autostop configuration is not supported for prebuilt workspaces.
216
- // Prebuild lifecycle is managed by the reconciliation loop, with scheduling behavior
217
- // defined per preset at the template level, not per workspace.
218
- if workspace .IsPrebuild {
219
- return xerrors .Errorf ("autostop configuration is not supported for prebuilt workspaces" )
220
- }
221
-
222
208
var durMillis * int64
223
209
if inv .Args [1 ] != "manual" {
224
210
dur , err := parseDuration (inv .Args [1 ])
You can’t perform that action at this time.
0 commit comments