From 57e1450ca7998a9cd2a1aa028a1e868eac5ce972 Mon Sep 17 00:00:00 2001 From: Zach Loafman Date: Sun, 21 Dec 2014 06:16:27 -0800 Subject: [PATCH] Up cmd/e2e timeout Attempt to fix https://github.com/GoogleCloudPlatform/kubernetes/issues/3053 --- cmd/e2e/e2e.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/e2e/e2e.go b/cmd/e2e/e2e.go index c8bcaa9610f..6b824dbfb15 100644 --- a/cmd/e2e/e2e.go +++ b/cmd/e2e/e2e.go @@ -397,8 +397,8 @@ func main() { go func() { defer util.FlushLogs() - time.Sleep(3 * time.Minute) - glog.Fatalf("This test has timed out.") + time.Sleep(5 * time.Minute) + glog.Fatalf("This test has timed out. Cleanup not guaranteed.") }() c := loadClientOrDie()