Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,10 @@
// closed after an exception is thrown while writing.
configure(JsonGenerator.Feature.AUTO_CLOSE_JSON_CONTENT, false);

// Bumping Jakarta version to 2.18.4 as part of https://github.com/apache/druid/pull/18013/ seems to fix IGNORE_DUPLICATE_MODULE_REGISTRATIONS.
// Disabling this feature in case multiple modules are registered with the same name.
configure(MapperFeature.IGNORE_DUPLICATE_MODULE_REGISTRATIONS, false);

Check notice

Code scanning / CodeQL

Deprecated method or constructor invocation Note

Invoking
ObjectMapper.configure
should be avoided because it has been deprecated.

addHandler(new DefaultDeserializationProblemHandler(serviceName));
}

Expand Down
Loading