Github user michaelandrepearce commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/2254#discussion_r211494915
--- Diff:
artemis-core-client/src/main/java/org/apache/activemq/artemis/core/client/impl/ClientSessionImpl.java
---
@@ -241,6 +243,16 @@
// ClientSession implementation
// -----------------------------------------------------------------
+ @Override
+ public boolean isEnable1xPrefixes() {
+ return enable1XPrefixes;
+ }
+
+ @Override
+ public void setEnable1xPrefixes(boolean value) {
--- End diff --
Could the jms session not be the thing referenced in the message, instead
of the core session. And then this would allow the custom jms bit to live
there, and youd still have access to the core session (though probably better
to delegate through)
---