Increase the timeout for prewarm I/O on CI

This commit is contained in:
Kovid Goyal 2022-06-14 21:17:28 +05:30
parent a7c65efc45
commit a27dfd8b7c
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -35,7 +35,7 @@ if TYPE_CHECKING:
error_events = select.POLLERR | select.POLLNVAL | select.POLLHUP 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): class PrewarmProcessFailed(Exception):