Github user gtully commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/1759#discussion_r160949474
--- Diff: tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/openwire/FQQNOpenWireTest.java
---
@@ -315,13 +314,13 @@ public void testVirtualTopicFQQN() throws Exception {
}
@Test
- @Ignore("need to figure auto bindings creation")
public void testVirtualTopicFQQNAutoCreate() throws Exception {
Connection exConn = null;
SimpleString topic = new SimpleString("VirtualTopic.Orders");
SimpleString subscriptionQ = new SimpleString("Consumer.A");
+ // defaults are false via test setUp
--- End diff --
thanks @mtaylor - I see, that getDefaultAddressRoutingType should only be used by auto
address creation. The queue routing type needs to be figured out from the address.
---
|