rafthttp: fix TestSendMessageWhenStreamIsBroken

Fix https://github.com/coreos/etcd/issues/5381.

In case CI being slow that taking more than 10ms.
release-3.0
Gyu-Ho Lee 2016-05-17 16:03:54 -07:00
parent ecf192556e
commit d20cb40f4f
1 changed files with 2 additions and 2 deletions

View File

@ -131,8 +131,8 @@ func TestSendMessageWhenStreamIsBroken(t *testing.T) {
n++
tr.Send([]raftpb.Message{{Type: raftpb.MsgHeartbeat, From: 1, To: 2, Term: 1, Commit: 3}})
case <-recvc:
if n > 10 {
t.Errorf("disconnection time = %dms, want < 10ms", n)
if n > 50 {
t.Errorf("disconnection time = %dms, want < 50ms", n)
}
return
}