Skip to content
Snippets Groups Projects
Commit b75aee5d authored by istmxrein's avatar istmxrein
Browse files

Wait for server while server creation

parent 01379084
No related branches found
No related tags found
No related merge requests found
......@@ -29,6 +29,8 @@ def provision_server(
flavor=flavor.id,
image=image.id,
auto_ip=floating_ip,
wait=True,
timeout=env.SERVER_CREATION_TIMEOUT,
boot_from_volume=True,
terminate_volume=True,
volume_size=env.VOLUME_SIZE,
......@@ -37,10 +39,6 @@ def provision_server(
network=network.id
)
print(f'Waiting for server to come up...')
server = conn.wait_for_server(server, timeout=int(env.SERVER_CREATION_TIMEOUT))
return server
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment