-
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(rds): instance identifiers and endpoints of a Cluster are blank #14394
Merged
Merged
Changes from 10 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
7ba3f6d
fix(aws-rds): allow accessing instance identifiers and endpoints of a…
956b771
fix(aws-rds): remove default values from instance identifiers and end…
bae2b64
fix(aws-rds): refactor destructuring out
d9d014f
fix(aws-rds): refactor tests to be included into an existing unit test
50735c3
fix(aws-rds): remove extra empty line
9a83757
fix(aws-rds): reorder class fields of DatabaseCluster
5d88e31
fix(aws-rds): make assertion more compact
b22d926
fix(aws-rds): remove unnecessary empty line
de8419f
fix(aws-rds): include testing for DatabaseClusterFromSnapshot as well
2e4c564
fix(aws-rds): fix test
d8b37f3
Merge branch 'master' into master
mergify[bot] d46c481
Merge branch 'master' into vilikin_master
skinny85 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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.
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.
Why move these? We keep members in a specific order (public, then protected, then private). Let's keep it this way here.
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.
They are actually moved to the implementing classes, so they no longer exist on the
DatabaseClusterNew
class. (diff looks almost as if they were just moved a bit down inside same class, but there's actually 200 rows in between)The reason for moving them was that I could not figure out a way to keep them readonly on the base class if we needed to set them from the implementing classes.