Skip to content

Commit

Permalink
Merge pull request etcd-io#4346 from gyuho/watch_timeout
Browse files Browse the repository at this point in the history
e2e: increase watch timeout
  • Loading branch information
gyuho committed Jan 29, 2016
2 parents 73b71dc + 713b56c commit e552791
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/etcdctl_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func testProcessClusterV2CtlWatch(t *testing.T, cfg *etcdProcessClusterConfig, n
return
case err := <-errChan:
t.Fatalf("failed watch (%v)", err)
case <-time.After(2 * time.Second):
case <-time.After(5 * time.Second):
t.Fatalf("watch timed out!")
}
}

0 comments on commit e552791

Please sign in to comment.