Skip to content

Commit

Permalink
Kc Admin Cl.:Fix typo that allows using customized ObjectMapper
Browse files Browse the repository at this point in the history
  • Loading branch information
michalvavrik committed Oct 29, 2023
1 parent 5afc0ec commit 8f9366d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ private boolean canReuseObjectMapper(InstanceHandle<ObjectMapper> objectMapperIn
}
// if any Jackson properties were configured, disallow reuse - this is done in order to provide forward compatibility with new Jackson configuration options
for (String propertyName : ConfigProvider.getConfig().getPropertyNames()) {
if (propertyName.startsWith("io.quarkus.jackson")) {
if (propertyName.startsWith("quarkus.jackson")) {
return false;
}
}
Expand Down

0 comments on commit 8f9366d

Please sign in to comment.