From 7cbbea498b5d571339b5ccaaf46135e84e23a8b3 Mon Sep 17 00:00:00 2001 From: Renan DelValle Date: Fri, 21 Dec 2018 13:39:02 -0800 Subject: [PATCH] Changing default timeout for start maintenance. --- cmd/start.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/start.go b/cmd/start.go index 11dc786..8cd6fac 100644 --- a/cmd/start.go +++ b/cmd/start.go @@ -43,7 +43,7 @@ func init() { // SLA Maintenance specific flags startMaintenanceCmd.Flags().DurationVar(&monitorInterval,"interval", time.Second * 5, "Interval at which to poll scheduler.") - startMaintenanceCmd.Flags().DurationVar(&monitorTimeout,"timeout", time.Minute * 1, "Time after which the monitor will stop polling and throw an error.") + startMaintenanceCmd.Flags().DurationVar(&monitorTimeout,"timeout", time.Minute * 10, "Time after which the monitor will stop polling and throw an error.") } var startCmd = &cobra.Command{