Increase wait time for cloud_init_complete

We often see test runs being killed prematurely due to slow to
complete cloud-init step on a loaded CI cloud.

Related issue #311
This commit is contained in:
Frode Nordahl
2020-07-02 13:03:42 +02:00
parent 5040bdf32d
commit 520830905b
+1 -1
View File
@@ -2283,7 +2283,7 @@ def get_ports_from_device_id(neutron_client, device_id):
@tenacity.retry(wait=tenacity.wait_exponential(multiplier=1, max=120),
reraise=True, stop=tenacity.stop_after_attempt(12))
reraise=True, stop=tenacity.stop_after_delay(1800))
def cloud_init_complete(nova_client, vm_id, bootstring):
"""Wait for cloud init to complete on the given vm.