Increase sleep to work around Rackspace slowness

pull/37/head^2
Jerry Seutter 10 years ago
parent cf59240bef
commit 3b465890b6

@ -101,8 +101,9 @@ def main():
startup_script)
passwd = uuid.uuid4().hex
instance.change_password(passwd)
# wait for the password change to be processed
sleep(POLL_SEC)
# wait for the password change to be processed. Continuing while
# a password change is processing will cause image creation to fail.
sleep(POLL_SEC*6)
env.host_string = str(instance.accessIPv4)
env.user = "root"

Loading…
Cancel
Save