epugh commented on code in PR #4181:
URL: https://github.com/apache/solr/pull/4181#discussion_r2879160354
##########
solr/core/src/java/org/apache/solr/jersey/JerseyApplications.java:
##########
@@ -44,6 +44,7 @@ public CoreContainerApp() {
// Request and response serialization/deserialization
// TODO: could these be singletons to save per-request object creations?
register(JacksonJsonProvider.class, 1);
+ register(MessageBodyWriters.JsonMessageBodyWriter.class, 5);
Review Comment:
Changing this to ```
register(MessageBodyWriters.JsonMessageBodyWriter.class, 1);
register(JacksonJsonProvider.class, 5);
```
caused test failures... so I'm not going to move forward with this change...
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]