Merge pull request #678 from Jimdo/handle-cfn-rollback-failure

Handle the case where a Cloudformation stack rollback fails.
This commit is contained in:
Benno Joy 2015-05-27 22:45:33 +05:30
commit 415815ef45

View file

@ -191,6 +191,11 @@ def stack_operation(cfn, stack_name, operation):
events = map(str, list(stack.describe_events())),
output = 'Stack %s failed' % operation)
break
elif '%s_ROLLBACK_FAILED' % operation == stack.stack_status:
result = dict(changed=True, failed=True,
events = map(str, list(stack.describe_events())),
output = 'Stack %s rollback failed' % operation)
break
else:
time.sleep(5)
return result