Github user michaelandrepearce commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/1778#discussion_r161978297
--- Diff:
artemis-jms-client/src/main/java/org/apache/activemq/artemis/jms/client/ActiveMQDestination.java
---
@@ -309,7 +338,7 @@ public SimpleString getSimpleAddress() {
}
public String getName() {
- return simpleAddress.toString();
+ return name;
--- End diff --
name can be null, if this is the case should use simpleAddress.toString.---
