We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d38936a + 88b6713 commit c612542Copy full SHA for c612542
src/cloudformation_cli_python_lib/hook.py
@@ -293,6 +293,8 @@ def _get_hook_status(operation_status: OperationStatus) -> HookStatus:
293
hook_status = HookStatus.IN_PROGRESS
294
elif operation_status == OperationStatus.SUCCESS:
295
hook_status = HookStatus.SUCCESS
296
+ elif operation_status == OperationStatus.CHANGE_SET_SUCCESS_SKIP_STACK_HOOK:
297
+ hook_status = HookStatus.CHANGE_SET_SUCCESS_SKIP_STACK_HOOK
298
else:
299
hook_status = HookStatus.FAILED
300
return hook_status
0 commit comments