Github user clebertsuconic commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/1990#discussion_r179284287
--- Diff:
artemis-core-client/src/main/java/org/apache/activemq/artemis/core/client/impl/ClientSessionImpl.java
---
@@ -1539,6 +1540,8 @@ public void end(final Xid xid, final int flags)
throws XAException {
startCall();
try {
sessionContext.xaEnd(xid, flags);
+ } catch (ActiveMQNotConnectedException ex) {
+
ActiveMQClientLogger.LOGGER.connectionClosedWarn(ex.getType(), ex.getMessage());
--- End diff --
and as I requested you this small change.. can you rebase against master?
that would help me to find that pesky AIO failure on travis.
---