-
Notifications
You must be signed in to change notification settings - Fork 428
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: ignore INACTIVE cluster in DefaultCluster #2045
Conversation
When we delete ECS cluster, AWS return it as INACTIVE cluster. ``` INACTIVE The cluster has been deleted. Clusters with an INACTIVE status may remain discoverable in your account for a period of time. However, this behavior is subject to change in the future, so you should not rely on INACTIVE clusters persisting. ``` https://docs.aws.amazon.com/AmazonECS/latest/developerguide/clusters.html We can't run task on INACTIVE cluster so we should ignore it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you so much for contributing! A few small comments below ⬇️
I have completed the fix! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome, thank you!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me! Thank you so much for your contribution!
When we delete ECS cluster, AWS return it as INACTIVE cluster. ``` INACTIVE The cluster has been deleted. Clusters with an INACTIVE status may remain discoverable in your account for a period of time. However, this behavior is subject to change in the future, so you should not rely on INACTIVE clusters persisting. ``` https://docs.aws.amazon.com/AmazonECS/latest/developerguide/clusters.html We can't run task on INACTIVE cluster so we should ignore it.
When we delete ECS cluster, AWS return it as INACTIVE cluster.
https://docs.aws.amazon.com/AmazonECS/latest/developerguide/clusters.html
We can't run task on INACTIVE cluster so we should ignore it.