luigidemasi commented on code in PR #13403: URL: https://github.com/apache/camel/pull/13403#discussion_r1516174428
########## 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: Ok, I'll try to reproduce the problem with plain jms component, if it's only a AMQP/QPid problem, I'll create a JmsTemplate for AMQP. -- 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