Github user michaelandrepearce commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/2246#discussion_r209658044
--- Diff:
artemis-jms-client/src/main/java/org/apache/activemq/artemis/jms/client/ActiveMQConnection.java
---
@@ -673,12 +673,16 @@ protected final void checkClosed() throws
JMSException {
}
}
- public void authorize() throws JMSException {
+ public void authorize(boolean validateClientId) throws JMSException {
--- End diff --
public interface change in client code, should probably keep the existing
method for people who may have coded against it.
---