]> Cypherpunks repositories - gostls13.git/commitdiff
misc/dashboard/builder: increase default command timeout
authorAndrew Gerrand <adg@golang.org>
Mon, 17 Sep 2012 18:05:43 +0000 (11:05 -0700)
committerAndrew Gerrand <adg@golang.org>
Mon, 17 Sep 2012 18:05:43 +0000 (11:05 -0700)
R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/6499127

misc/dashboard/builder/main.go

index 59e0f3c1dbaa5fc60c90e7fdaea48ba823f96b21..8c6b65caeb60931ebb87861375d643c6ae65abda 100644 (file)
@@ -55,7 +55,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", 2*time.Minute, "Maximum time to wait for an external command")
+       cmdTimeout    = flag.Duration("cmdTimeout", 5*time.Minute, "Maximum time to wait for an external command")
        verbose       = flag.Bool("v", false, "verbose")
 )