mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-30 06:11:26 -07:00
Handle the case where a stack rollback fails.
This commit is contained in:
parent
ef140a084a
commit
af689dece3
1 changed files with 5 additions and 0 deletions
|
@ -191,6 +191,11 @@ def stack_operation(cfn, stack_name, operation):
|
||||||
events = map(str, list(stack.describe_events())),
|
events = map(str, list(stack.describe_events())),
|
||||||
output = 'Stack %s failed' % operation)
|
output = 'Stack %s failed' % operation)
|
||||||
break
|
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:
|
else:
|
||||||
time.sleep(5)
|
time.sleep(5)
|
||||||
return result
|
return result
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue