test/e2e: up the timeout on AllNodesReady

Signed-off-by: Jess Frazelle <me@jessfraz.com>
This commit is contained in:
Jess Frazelle
2016-09-06 11:50:33 -07:00
parent e7e9587799
commit 6f045ff415

View File

@@ -414,7 +414,7 @@ func (f *Framework) AfterEach() {
// Check whether all nodes are ready after the test.
// This is explicitly done at the very end of the test, to avoid
// 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)
}
}