Skip to content

Commit 4b95a19

Browse files
committed
fix test
1 parent f5cff15 commit 4b95a19

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

cli/templateedit.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,9 @@ func (r *RootCmd) templateEdit() *clibase.Cmd {
7373
allowUserAutostop: allowUserAutostop,
7474
requireActiveVersion: requireActiveVersion,
7575
})
76+
if err != nil {
77+
return err
78+
}
7679

7780
req := updateTemplateMetaRequest(updateTemplateMetaArgs{
7881
client: client,

cli/templatepush.go

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -526,18 +526,6 @@ func (r *RootCmd) templatePush() *clibase.Cmd {
526526
Hidden: true,
527527
Value: clibase.Int64Of(&autostopRequirementWeeks),
528528
},
529-
{
530-
Flag: "dormancy-threshold",
531-
Description: "Specify a duration workspaces may be inactive prior to being moved to the dormant state. This licensed feature's default is 0h (off). Maps to \"Dormancy threshold\" in the UI.",
532-
Default: "0h",
533-
Value: clibase.DurationOf(&dormancyThreshold),
534-
},
535-
{
536-
Flag: "dormancy-auto-deletion",
537-
Description: "Specify a duration workspaces may be in the dormant state prior to being deleted. This licensed feature's default is 0h (off). Maps to \"Dormancy Auto-Deletion\" in the UI.",
538-
Default: "0h",
539-
Value: clibase.DurationOf(&dormancyAutoDeletion),
540-
},
541529
{
542530
Flag: "allow-user-cancel-workspace-jobs",
543531
Description: "Allow users to cancel in-progress workspace jobs.",

0 commit comments

Comments
 (0)