PascalSchumacher commented on a change in pull request #5787: URL: https://github.com/apache/camel/pull/5787#discussion_r743022066
########## File path: core/camel-xml-jaxp/src/main/java/org/apache/camel/converter/jaxp/StaxConverter.java ########## @@ -316,7 +319,10 @@ private XMLOutputFactory getXMLOutputFactory() { private void returnXMLOutputFactory(XMLOutputFactory factory) { if (factory != outputFactory) { - OUTPUT_FACTORY_POOL.offer(factory); + boolean resultOfOffer = OUTPUT_FACTORY_POOL.offer(factory); + if (!resultOfOffer) { + LOG.error("factory wasn't added into OUTPUT_FACTORY_POOL"); Review comment: Fixed by @davsclaus in https://github.com/apache/camel/commit/fb67852b8f5fbb525d7b2ecff71f78d18754080c and https://github.com/apache/camel/commit/fb67852b8f5fbb525d7b2ecff71f78d18754080c Thanks! -- 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