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
605605 if workspace .IdleTimeout != defaultConfig .Workspace .IdleTimeout {
606606 config = append (config , fmt .Sprintf ("workspace.idleTimeout=%s" , workspace .IdleTimeout ))
607607 }
608+ if workspace .PostStartTimeout != nil && workspace .PostStartTimeout != defaultConfig .Workspace .PostStartTimeout {
609+ config = append (config , fmt .Sprintf ("workspace.postStartTimeout=%d" , * workspace .PostStartTimeout ))
610+ }
608611 if workspace .ProgressTimeout != "" && workspace .ProgressTimeout != defaultConfig .Workspace .ProgressTimeout {
609612 config = append (config , fmt .Sprintf ("workspace.progressTimeout=%s" , workspace .ProgressTimeout ))
610613 }
You can’t perform that action at this time.
0 commit comments