Merge pull request #420 from drfickle/route53_float_fix
route53 module retry_interval needs to be a float before passing to time.sleep
This commit is contained in:
commit
71224c8678
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue