fix: improve error message for parallel stack deployments (#11649)#13146
Open
MUNJETIJAYANTHKRISHNA wants to merge 1 commit intoserverless:mainfrom
Open
fix: improve error message for parallel stack deployments (#11649)#13146MUNJETIJAYANTHKRISHNA wants to merge 1 commit intoserverless:mainfrom
MUNJETIJAYANTHKRISHNA wants to merge 1 commit intoserverless:mainfrom
Conversation
|
All contributors have signed the CLA ✍️ ✅ |
Author
|
I have read the CLA Document and I hereby sign the CLA |
Author
|
Hi @medikoo and maintainers , This PR improves the error message for parallel stack deployments (#11649) to help users quickly understand and fix the issue when multiple CI/CD pipelines run concurrently. It’s a small, safe, and non-breaking change that enhances developer experience. Thanks for reviewing! |
Contributor
|
@MUNJETIJAYANTHKRISHNA I'm no longer involved into this project |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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
This pull request improves the error message shown when a CloudFormation ChangeSet
cannot be created due to a mismatch with an existing template.
Previously, the error message was unclear. Now it provides a clear explanation that
the issue often occurs when multiple deployments run in parallel (for example,
in CI/CD pipelines or simultaneous PR merges).
Changes
lib/plugins/aws/deploy/lib/create-stack.jsto add a more descriptive error message.Related Issue
Fixes #11649
Testing