test/e2e: up the timeout on AllNodesReady

Signed-off-by: Jess Frazelle <me@jessfraz.com>
pull/6/head
Jess Frazelle 2016-09-06 11:50:33 -07:00
parent e7e9587799
commit 6f045ff415
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3
1 changed files with 1 additions and 1 deletions

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