mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
pkg/transport: longer timeout for slow CI
This commit is contained in:
parent
5372e11727
commit
3c1ecf70cf
@ -50,7 +50,7 @@ func TestReadWriteTimeoutDialer(t *testing.T) {
|
||||
|
||||
select {
|
||||
case <-done:
|
||||
case <-time.After(d.wtimeoutd * 5):
|
||||
case <-time.After(d.wtimeoutd * 10):
|
||||
t.Fatal("wait timeout")
|
||||
}
|
||||
|
||||
@ -72,7 +72,7 @@ func TestReadWriteTimeoutDialer(t *testing.T) {
|
||||
|
||||
select {
|
||||
case <-done:
|
||||
case <-time.After(d.rdtimeoutd * 5):
|
||||
case <-time.After(d.rdtimeoutd * 10):
|
||||
t.Fatal("wait timeout")
|
||||
}
|
||||
|
||||
|
@ -76,7 +76,7 @@ func TestWriteReadTimeoutListener(t *testing.T) {
|
||||
|
||||
select {
|
||||
case <-done:
|
||||
case <-time.After(wln.wtimeoutd * 5):
|
||||
case <-time.After(wln.wtimeoutd * 10):
|
||||
t.Fatal("wait timeout")
|
||||
}
|
||||
|
||||
@ -100,7 +100,7 @@ func TestWriteReadTimeoutListener(t *testing.T) {
|
||||
|
||||
select {
|
||||
case <-done:
|
||||
case <-time.After(wln.rdtimeoutd * 5):
|
||||
case <-time.After(wln.rdtimeoutd * 10):
|
||||
t.Fatal("wait timeout")
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user