Skip to content

Commit

Permalink
Merge pull request #36770 from michalvavrik/feature/fix-min-kc-admin-…
Browse files Browse the repository at this point in the history
…cl-typo

Keycloak Admin Client Reactive: Fix typo that allows users to customize ObjectMapper
  • Loading branch information
geoand authored Oct 30, 2023
2 parents 5afc0ec + 8f9366d commit e979c79
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 e979c79

Please sign in to comment.