-
Notifications
You must be signed in to change notification settings - Fork 23
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
adding library response types #27
Conversation
LGTM, matches what was discussed in that issue. |
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.
Can you integrate these types into the interface?
pkg/broker/types.go
Outdated
|
||
// AlreadyReceived is used to determine if the request was a duplicate | ||
// or not. should not be sent back in the respone. | ||
AlreadyReceived bool `json:"-"` |
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.
Take out this field (and the binding) one and let's add in another issue
* removing new field for follow on PR.
* fixing test cases
LGTM |
1 similar comment
LGTM |
Is this waiting for anything? Can one of you merge? @pmorie @carolynvs @lilic |
LGTM 3 - merging |
I would really like to have some kind of a "breaking change" in a description, or a label in the PR. So we can easily add to the release notes, and then when we bump versions in our brokers or in the osb-starter-pack we know what to look out for. :) WDYT? @carolynvs @pmorie @shawn-hurley |
I think that would be useful for all downstream users of the library. I think that it should probably be on the PR in my opinion. |
Agreed! We would all use the hint and the best place for it is in the PR title or main comment. |
Add openshift template
This is in regards to #13.
This creates the new types of the responses that the
broker.Interface
will eventually use.cc @pmorie @jmrodri