From 6db195cae25904a8675804073f87c2b65e154370 Mon Sep 17 00:00:00 2001 From: Alex Brainman Date: Mon, 29 Jul 2013 14:31:21 +1000 Subject: [PATCH] misc/dashboard/builder: increase cmdTimeout to 10 minutes It takes more then 5 minutes to clone go repo on windows-386 builder now. R=golang-dev, dave CC=golang-dev https://golang.org/cl/12007043 --- misc/dashboard/builder/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/dashboard/builder/main.go b/misc/dashboard/builder/main.go index af7f956e24..6ef357ad49 100644 --- a/misc/dashboard/builder/main.go +++ b/misc/dashboard/builder/main.go @@ -61,7 +61,7 @@ var ( failAll = flag.Bool("fail", false, "fail all builds") parallel = flag.Bool("parallel", false, "Build multiple targets in parallel") buildTimeout = flag.Duration("buildTimeout", 60*time.Minute, "Maximum time to wait for builds and tests") - cmdTimeout = flag.Duration("cmdTimeout", 5*time.Minute, "Maximum time to wait for an external command") + cmdTimeout = flag.Duration("cmdTimeout", 10*time.Minute, "Maximum time to wait for an external command") commitInterval = flag.Duration("commitInterval", 1*time.Minute, "Time to wait between polling for new commits (0 disables commit poller)") verbose = flag.Bool("v", false, "verbose") ) -- 2.48.1