File tree 3 files changed +3
-3
lines changed
components/WorkspaceScheduleForm
pages/WorkspaceSchedulePage
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ import (
32
32
"github.com/coder/coder/codersdk"
33
33
)
34
34
35
- const workspaceDefaultTTL = 2 * time .Hour
35
+ const workspaceDefaultTTL = 12 * time .Hour
36
36
37
37
var (
38
38
ttlMin = time .Minute //nolint:revive // min here means 'minimum' not 'minutes'
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ export const Language = {
54
54
timezoneLabel : "Timezone" ,
55
55
ttlLabel : "Time until shutdown (hours)" ,
56
56
ttlCausesShutdownHelperText : "Your workspace will shut down" ,
57
- ttlCausesShutdownAfterStart : "after start" ,
57
+ ttlCausesShutdownAfterStart : "after its next start" ,
58
58
ttlCausesNoShutdownHelperText : "Your workspace will not automatically shut down." ,
59
59
formTitle : "Workspace schedule" ,
60
60
startSection : "Start" ,
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ export interface AutoStop {
5
5
6
6
export const emptyTTL = 0
7
7
8
- export const defaultTTL = 8
8
+ export const defaultTTL = 12
9
9
10
10
const msToHours = ( ms : number ) => Math . round ( ms / ( 1000 * 60 * 60 ) )
11
11
You can’t perform that action at this time.
0 commit comments