Commit d5467056 authored by Steven Allen's avatar Steven Allen

ci: increase stream stress test timeout

fixes #4
parent 7a3b6ecb
......@@ -380,7 +380,12 @@ func SubtestStreamOpenStress(t *testing.T, tr mux.Multiplexer) {
}
}()
limit := time.After(time.Second * 10)
timeout := time.Second * 10
if ci.IsRunning() {
timeout *= 10
}
limit := time.After(timeout)
for i := 0; i < count*workers; i++ {
select {
case <-recv:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment