Commit 65ea6b91 authored by Fabio Yeon's avatar Fabio Yeon

Merge pull request #9785 from mesosphere/longer-timeout-for-proc-test

increase timeout for nested concurrent test...
parents 3dcf97a0 9f53405d
......@@ -356,7 +356,10 @@ func TestProc_doWithNestedXConcurrent(t *testing.T) {
var wg sync.WaitGroup
const CONC = 20
wg.Add(CONC)
timeout := 3 * time.Second
// this test spins up TONS of goroutines that can take a little while to execute on a busy
// CI server. drawing the line at 10s because I've never seen it take anywhere near that long.
timeout := 10 * time.Second
for i := 0; i < CONC; i++ {
i := i
......
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