From 9391758fbade137b577b903adf65ab90f1de32f2 Mon Sep 17 00:00:00 2001 From: Frode Nordahl Date: Mon, 11 Nov 2019 10:04:30 +0100 Subject: [PATCH] Increase number of attempts for ping_response Some configurations require more time to settle before we get the expected response. (LP: #1851710) --- zaza/openstack/utilities/openstack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zaza/openstack/utilities/openstack.py b/zaza/openstack/utilities/openstack.py index 116bfed..e029c3c 100644 --- a/zaza/openstack/utilities/openstack.py +++ b/zaza/openstack/utilities/openstack.py @@ -2174,7 +2174,7 @@ def cloud_init_complete(nova_client, vm_id, bootstring): @tenacity.retry(wait=tenacity.wait_exponential(multiplier=1, max=60), - reraise=True, stop=tenacity.stop_after_attempt(8)) + reraise=True, stop=tenacity.stop_after_attempt(16)) def ping_response(ip): """Wait for ping to respond on the given IP.