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