test/e2e: up the timeout on AllNodesReady

parent e7e95877
...@@ -414,7 +414,7 @@ func (f *Framework) AfterEach() { ...@@ -414,7 +414,7 @@ func (f *Framework) AfterEach() {
// Check whether all nodes are ready after the test. // Check whether all nodes are ready after the test.
// This is explicitly done at the very end of the test, to avoid // This is explicitly done at the very end of the test, to avoid
// e.g. not removing namespace in case of this failure. // e.g. not removing namespace in case of this failure.
if err := AllNodesReady(f.Client, time.Minute); err != nil { if err := AllNodesReady(f.Client, 3*time.Minute); err != nil {
Failf("All nodes should be ready after test, %v", err) Failf("All nodes should be ready after test, %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