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
Add requested parameters when not in existing service instance #935
Conversation
pkg/broker/broker.go
Outdated
| @@ -1398,6 +1398,7 @@ func (a AnsibleBroker) validateRequestedUpdateParams( | |||
| // can make sense of them. | |||
| log.Noticef("Requested update parameter: [%v] with the value of [%v] was found " + | |||
| "in an update request, but it did not exist on the previous service instance.") | |||
| changedParams[reqParam] = reqVal | |||
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.
If this is all we are going to do then we should just remove the entire if/else chain and always update IMO
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'm not against that.
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.
ACK
|
This should go against master once |
Add the requested update parameter to the changed parameters when not found in the existing serviceinstance.
Fixes: #934