Merge pull request #9015 from jlowdermilk/integration-flake

Increase timeout on biggest contributor to hack/test-integration flakes
pull/6/head
Rohit Jnagal 2015-05-29 13:14:20 -07:00
commit 0579c19a55
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}