Github user clebertsuconic commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/2254#discussion_r211416478
--- 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 --
@michaelandrepearce also, notice this is only affecting the default on
ActiveMQConnectionFactory...
There the value is also settable.
---