Github user michaelandrepearce commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/2254#discussion_r211418658
--- 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 --
Ive marked where hot paths concern me. On phone so may have missed one.
Wont get to computer to properly go ovee till tomorrow
---