mirror of
https://github.com/coder/coder.git
synced 2025-07-15 22:20:27 +00:00
fix: loadtest/reconnectingpty tweak timeout (#5300)
* flaky * fix: load test increase timeout * Remove flaky * Improvement * only Linux * WaitSuperLong * Fix * Try longer * Try: sleep 120
This commit is contained in:
@ -7,9 +7,10 @@ import "time"
|
||||
// Constants for timing out operations, usable for creating contexts
|
||||
// that timeout or in require.Eventually.
|
||||
const (
|
||||
WaitShort = 5 * time.Second
|
||||
WaitMedium = 10 * time.Second
|
||||
WaitLong = 15 * time.Second
|
||||
WaitShort = 5 * time.Second
|
||||
WaitMedium = 10 * time.Second
|
||||
WaitLong = 15 * time.Second
|
||||
WaitSuperLong = 60 * time.Second
|
||||
)
|
||||
|
||||
// Constants for delaying repeated operations, e.g. in
|
||||
|
Reference in New Issue
Block a user