From fa45d1af869758aa4d773a80f34e26a8cad9f7ea Mon Sep 17 00:00:00 2001 From: Francesco De Martino Date: Tue, 20 Dec 2022 10:19:46 +0100 Subject: [PATCH] [integ-tests] Increase timeout for cloudinit completion in scheduler plugin test We don't want this test to fail in case a node is slow at bootstrap. That condition will need to be covered by a dedicated test case. Signed-off-by: Francesco De Martino --- .../tests/scheduler_plugin/test_scheduler_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration-tests/tests/scheduler_plugin/test_scheduler_plugin.py b/tests/integration-tests/tests/scheduler_plugin/test_scheduler_plugin.py index f3ed190842..335e96bf4a 100644 --- a/tests/integration-tests/tests/scheduler_plugin/test_scheduler_plugin.py +++ b/tests/integration-tests/tests/scheduler_plugin/test_scheduler_plugin.py @@ -257,7 +257,7 @@ def _wait_instance_running(ec2_client, instance_ids): ) -@retry(wait_fixed=seconds(10), stop_max_delay=minutes(3)) +@retry(wait_fixed=seconds(10), stop_max_delay=minutes(5)) def _wait_compute_cloudinit_done(command_executor, compute_node): """Wait till cloud-init complete on a given compute node""" compute_node_private_ip = compute_node.get("privateIpAddress")