From eea83cde4d1afb464f9c593ec3dfc0a1ec4e3d5e Mon Sep 17 00:00:00 2001 From: Jeremy Bowman Date: Mon, 10 Feb 2020 09:25:00 -0500 Subject: [PATCH] Increase xdist worker startup timeout (#23059) --- scripts/xdist/pytest_worker_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/xdist/pytest_worker_manager.py b/scripts/xdist/pytest_worker_manager.py index bccd03e0be..28b7e1909d 100644 --- a/scripts/xdist/pytest_worker_manager.py +++ b/scripts/xdist/pytest_worker_manager.py @@ -29,7 +29,7 @@ class PytestWorkerManager(): """ Responsible for spinning up and terminating EC2 workers to be used with pytest-xdist """ - WORKER_BOOTUP_TIMEOUT_MINUTES = 5 + WORKER_BOOTUP_TIMEOUT_MINUTES = 10 WORKER_SSH_ATTEMPTS = 10 MAX_RUN_WORKER_RETRIES = 7