Commit 0579c19a authored by Rohit Jnagal's avatar Rohit Jnagal

Merge pull request #9015 from jlowdermilk/integration-flake

Increase timeout on biggest contributor to hack/test-integration flakes
parents 6274d845 d5b24fdb
......@@ -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)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment