Merge pull request #61 from gnuoy/wait-longer-for-boot

Increase wait time for guest to boot.
This commit is contained in:
Frode Nordahl
2019-09-24 12:11:49 +02:00
committed by GitHub

View File

@@ -1981,7 +1981,7 @@ def get_ports_from_device_id(neutron_client, device_id):
@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(10))
def cloud_init_complete(nova_client, vm_id, bootstring):
"""Wait for cloud init to complete on the given vm.