From d5b24fdb694f021b9ef27d90c5dc70763f707c7f Mon Sep 17 00:00:00 2001 From: Jeff Lowdermilk Date: Fri, 29 May 2015 11:46:43 -0700 Subject: [PATCH] Increase timeout on biggest contributor to hack/test-integration flakes --- cmd/integration/integration.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/integration/integration.go b/cmd/integration/integration.go index ace2e864aed..88a949ef835 100644 --- a/cmd/integration/integration.go +++ b/cmd/integration/integration.go @@ -905,7 +905,7 @@ func runSchedulerNoPhantomPodsTest(client *client.Client) { if err != nil { glog.Fatalf("Failed to create pod: %v, %v", pod, err) } - if err := wait.Poll(time.Second, time.Second*30, podRunning(client, baz.Namespace, baz.Name)); err != nil { + if err := wait.Poll(time.Second, time.Second*60, podRunning(client, baz.Namespace, baz.Name)); err != nil { glog.Fatalf("FAILED: (Scheduler probably didn't process deletion of 'phantom.bar') Pod never started running: %v", err) }