mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-12 13:31:52 +00:00
Merge pull request #9785 from mesosphere/longer-timeout-for-proc-test
increase timeout for nested concurrent test...
This commit is contained in:
commit
65ea6b914c
@ -356,7 +356,10 @@ func TestProc_doWithNestedXConcurrent(t *testing.T) {
|
|||||||
var wg sync.WaitGroup
|
var wg sync.WaitGroup
|
||||||
const CONC = 20
|
const CONC = 20
|
||||||
wg.Add(CONC)
|
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++ {
|
for i := 0; i < CONC; i++ {
|
||||||
i := i
|
i := i
|
||||||
|
Loading…
Reference in New Issue
Block a user