Commit 78d1e248 by milan

avoid the instance start--state-fetch race

parent c4aa72f1
......@@ -231,6 +231,9 @@ def main():
res_list = res.connection.get_all_instances(instids)
this_res = res_list[0]
if wait:
# there's a race between start and get an instance state
import time
time.sleep(5)
# wait here until the instances are up
num_running = 0
while num_running != len(instids):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment