-
Notifications
You must be signed in to change notification settings - Fork 4k
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
fix(init): Python init template's stack ID doesn't match other languages #13480
Merged
Conversation
This file contains 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
Update fork
…ages In all other languages other than Python, creating a new folder `hello-cdk` and doing `cdk init` results in a stack with an ID of `HelloCdkStack`. In Python you get `hello-cdk`. This PR changes the Python init template to match the other languages.
ghost
requested a review
from rix0rrr
March 8, 2021 22:27
rix0rrr
added
the
pr-linter/exempt-test
The PR linter will not require test changes
label
Mar 9, 2021
rix0rrr
approved these changes
Mar 9, 2021
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
Thank you for contributing! Your pull request will be updated from master and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
This was referenced Mar 12, 2021
Merged
This was referenced Mar 14, 2021
Merged
Merged
Merged
Closed
Closed
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
contribution/core
This is a PR that came from AWS.
pr-linter/exempt-test
The PR linter will not require test changes
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.
In other languages, if you create a directory
hello-cdk
, docdk init
, and thencdk ls
, you getHelloCdkStack
. In Python you gethello-cdk
. Change the Python init template to match the other languages.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license