luigidemasi commented on code in PR #13403: URL: https://github.com/apache/camel/pull/13403#discussion_r1518559799
########## components/camel-jms/src/main/java/org/apache/camel/component/jms/JmsConfiguration.java: ########## @@ -620,7 +620,13 @@ private Object doSendToDestination( // Check commit - avoid commit call within a JTA transaction. if (session.getTransacted() && isSessionLocallyTransacted(session)) { // Transacted session created by this template -> commit. - JmsUtils.commitIfNecessary(session); + Assert.notNull(session, "Session must not be null"); + try { + session.commit(); Review Comment: @davsclaus @orpiske, not able to reproduce with plain jms, it seems that this happens only with amqp/Qpid. I moved the changes to camel-amqp component. -- 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