jinmeiliao commented on code in PR #7737:
URL: https://github.com/apache/geode/pull/7737#discussion_r885876741
##########
geode-common/src/main/java/org/apache/geode/util/internal/GeodeJsonMapper.java:
##########
@@ -34,13 +36,21 @@ public class GeodeJsonMapper {
*/
public static ObjectMapper getMapper() {
ObjectMapper mapper = JsonMapper.builder()
+ .addModule(new JavaTimeModule())
Review Comment:
Now I think of it, we should not spell out those modules here. Instead, we
should do `findAndRegisterModules` to search for all modules available on the
classpath. This would get rid of the need to require these on the management
java client. I will submit a commit for iit.
--
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]