Increase the timeout for prewarm I/O on CI
This commit is contained in:
parent
a7c65efc45
commit
a27dfd8b7c
1 changed files with 1 additions and 1 deletions
|
|
@ -35,7 +35,7 @@
|
|||
|
||||
|
||||
error_events = select.POLLERR | select.POLLNVAL | select.POLLHUP
|
||||
TIMEOUT = 5.0
|
||||
TIMEOUT = 15.0 if os.environ.get('CI') == 'true' else 5.0
|
||||
|
||||
|
||||
class PrewarmProcessFailed(Exception):
|
||||
|
|
|
|||
Loading…
Reference in a new issue