retry_interval needs to be a float before passing to time.sleep

pull/18777/head
Steve Fox 10 years ago committed by Matt Clay
parent 0cf3cfbf5a
commit 7af1c96623

@ -162,7 +162,7 @@ def commit(changes, retry_interval):
code = code.split("</Code>")[0]
if code != 'PriorRequestNotComplete' or retry < 0:
raise e
time.sleep(retry_interval)
time.sleep(float(retry_interval))
def main():
argument_spec = ec2_argument_spec()

Loading…
Cancel
Save