Merge pull request #4346 from gyuho/watch_timeout

e2e: increase watch timeout
This commit is contained in:
Gyu-Ho Lee 2016-01-29 09:01:33 -08:00
commit e5527914aa

View File

@ -119,7 +119,7 @@ func testProcessClusterV2CtlWatch(t *testing.T, cfg *etcdProcessClusterConfig, n
return return
case err := <-errChan: case err := <-errChan:
t.Fatalf("failed watch (%v)", err) t.Fatalf("failed watch (%v)", err)
case <-time.After(2 * time.Second): case <-time.After(5 * time.Second):
t.Fatalf("watch timed out!") t.Fatalf("watch timed out!")
} }
} }