Github user jbertram commented on a diff in the pull request: https://github.com/apache/activemq-artemis/pull/2187#discussion_r207253620 --- Diff: artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/ActiveMQSessionContext.java --- @@ -189,16 +185,24 @@ public void kill() { this.killed = true; } + private void setHandlers() { + sessionChannel.setCommandConfirmationHandler(commandConfirmationHandler); --- End diff -- I'm not sure I follow you. Write a test to demonstrate?
---