-
Notifications
You must be signed in to change notification settings - Fork 82
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
role count fix #1172
role count fix #1172
Conversation
AWS CodeBuild CI Report for Linux CentOS 7
|
1b32ec3
to
9812b21
Compare
AWS CodeBuild CI Report for Linux CentOS 7
|
AWS CodeBuild CI Report for Linux CentOS 7
|
@@ -150,9 +150,19 @@ func (configuration *DatabaseConfiguration) FailOver() DatabaseConfiguration { | |||
// | |||
// This will fill in defaults of -1 for some fields that have a default of 0, | |||
// and will ensure that the region configuration is ordered consistently. | |||
func (configuration DatabaseConfiguration) NormalizeConfiguration() DatabaseConfiguration { | |||
func (configuration DatabaseConfiguration) NormalizeConfiguration(version string, areSeparatedProxiesConfigured bool) DatabaseConfiguration { |
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.
This looks like a breaking change. Can we implement this by defining a new function and having the old function call the new one?
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.
I think this is fixed now.
AWS CodeBuild CI Report for Linux CentOS 7
|
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.
👍
* fix: apply correct proxy settings per documentation
AWS CodeBuild CI Report for Linux CentOS 7
|
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.
I know that these changes are already merged but I still have some questions: Those changes imply that proxies and grv/commit proxies can't be set at the same time correct? Is this documented somewhere outside of the code e.g. in our docs?
* fix: apply correct proxy settings per documentation
Description
Fixes #1150 #1151.
If proxies are set to 0, then grv_proxies/commit_proxies will be used in the configure string correctly and vice versa. Defaults have been set for all cases and added some extra logic in normalization of the status to account for that so that reconciliation completes.
Type of change
Please select one of the options below.
Testing
Unit tests and local dev environment.