File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 9
9
// Constants for timing out operations, usable for creating contexts
10
10
// that timeout or in require.Eventually.
11
11
const (
12
- WaitShort = 5 * time .Second
13
- WaitMedium = 10 * time .Second
14
- WaitLong = 15 * time .Second
12
+ WaitShort = 10 * time .Second
13
+ WaitMedium = 15 * time .Second
14
+ WaitLong = 25 * time .Second
15
15
WaitSuperLong = 60 * time .Second
16
16
)
17
17
Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ import "time"
7
7
//
8
8
// Windows durations are adjusted for slow CI workers.
9
9
const (
10
- WaitShort = 10 * time .Second
10
+ WaitShort = 15 * time .Second
11
11
WaitMedium = 20 * time .Second
12
- WaitLong = 30 * time .Second
13
- WaitSuperLong = 60 * time .Second
12
+ WaitLong = 35 * time .Second
13
+ WaitSuperLong = 120 * time .Second
14
14
)
15
15
16
16
// Constants for delaying repeated operations, e.g. in
You can’t perform that action at this time.
0 commit comments