File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -605,6 +605,9 @@ func GetCurrentConfigString(currConfig *controller.OperatorConfiguration) string
605
605
if workspace .IdleTimeout != defaultConfig .Workspace .IdleTimeout {
606
606
config = append (config , fmt .Sprintf ("workspace.idleTimeout=%s" , workspace .IdleTimeout ))
607
607
}
608
+ if workspace .PostStartTimeout != nil && workspace .PostStartTimeout != defaultConfig .Workspace .PostStartTimeout {
609
+ config = append (config , fmt .Sprintf ("workspace.postStartTimeout=%d" , * workspace .PostStartTimeout ))
610
+ }
608
611
if workspace .ProgressTimeout != "" && workspace .ProgressTimeout != defaultConfig .Workspace .ProgressTimeout {
609
612
config = append (config , fmt .Sprintf ("workspace.progressTimeout=%s" , workspace .ProgressTimeout ))
610
613
}
You can’t perform that action at this time.
0 commit comments