Github user tillrohrmann commented on a diff in the pull request:
https://github.com/apache/flink/pull/4763#discussion_r143508371
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/rest/util/RestMapperUtils.java
---
@@ -33,8 +33,7 @@
objectMapper.enable(
DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES,
DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES,
- DeserializationFeature.FAIL_ON_READING_DUP_TREE_KEY,
-
DeserializationFeature.FAIL_ON_MISSING_CREATOR_PROPERTIES);
--- End diff --
This is a valid objection which I share. I'll remove this change and set
the map of `TaskCheckpointStatistics` to an empty map in case that we want to
leave the details out.
---