We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 768b4bb commit 78b5611Copy full SHA for 78b5611
src/main/java/io/iworkflow/core/JacksonJsonObjectEncoder.java
@@ -45,6 +45,7 @@ public JacksonJsonObjectEncoder() {
45
// may be important if the replay is happening on a host in another timezone
46
mapper.configure(DeserializationFeature.ADJUST_DATES_TO_CONTEXT_TIME_ZONE, false);
47
mapper.configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, false);
48
+ mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
49
mapper.registerModule(new JavaTimeModule());
50
mapper.registerModule(new Jdk8Module());
51
mapper.setVisibility(PropertyAccessor.FIELD, JsonAutoDetect.Visibility.ANY);
0 commit comments