orpiske commented on PR #11882: URL: https://github.com/apache/camel/pull/11882#issuecomment-1790597620
@fil512 as it is, this patch breaks `camel-jackson`. It can be fixed by adding a strict converter on [JacksonTypeConverter](https://github.com/apache/camel/blob/main/components/camel-jackson/src/main/java/org/apache/camel/component/jackson/converter/JacksonTypeConverters.java#L172) that can match a BooleanNode type. ``` @Converter public Boolean toBoolean(BooleanNode node, Exchange exchange) throws Exception { return node.asBoolean(); } ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org