feat: add option to wait for ECS deployment success status #104
+91
−3
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
wait_all_deployment_successfulmethod to wait for ECS service deployments to reach SUCCESSFUL statusecs_wait_for_deployment_successconfiguration option to control wait behaviorBackground
Currently,
wait_all_runningmethod considers deployment complete whenrunning_countmatchesdesired_count. However, this doesn't guarantee that the ECS service deployment has actually completed successfully. This PR adds an option to wait for the deployment status to become SUCCESSFUL instead.Changes
wait_all_deployment_successful- waits for deployment status to be SUCCESSFUL and running_count to match desired_countecs_wait_for_deployment_successoption (default: false for backward compatibility)Usage
🤖 Generated with Claude Code