Skip to content

Commit c612542

Browse files
authored
Merge pull request #5 from brianlaoaws/github-fork/master-2
Add new operation status translation
2 parents d38936a + 88b6713 commit c612542

File tree

1 file changed

+2
-0
lines changed
  • src/cloudformation_cli_python_lib

1 file changed

+2
-0
lines changed

src/cloudformation_cli_python_lib/hook.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,8 @@ def _get_hook_status(operation_status: OperationStatus) -> HookStatus:
293293
hook_status = HookStatus.IN_PROGRESS
294294
elif operation_status == OperationStatus.SUCCESS:
295295
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
296298
else:
297299
hook_status = HookStatus.FAILED
298300
return hook_status

0 commit comments

Comments
 (0)