-
Notifications
You must be signed in to change notification settings - Fork 566
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
Adds Nima WebClient Shortcuts for media support #6951
Conversation
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.
Not really a MediaContext expert, but in comparison to the Server implementation, the changes seem to look fine to me. The only comment I may have, and maybe this is more of a question... is it possible to add a test on this in nima/tests/integration/webclient to test out new shortcut like addMediaSupport like below:
WebClient webClient = WebClient.builder()
...
.addMediaSupport(JsonpSupport.create())
...
.build();
Signed-off-by: Laird Nelson <[email protected]>
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.
LGTM, hence approving. Would be good to create a tracking issue to see if we can add a unit or an integration test for this.
Signed-off-by: Laird Nelson <[email protected]>
Signed-off-by: Laird Nelson <[email protected]>
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.
LGTM....re-approving
This PR tries to do the equivalent of what #6564 does on the server side with as few changes as possible. This is not my area at all so please do let me know what I've done wrong.