Github user jbertram commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/1537#discussion_r139241507
--- Diff:
tests/integration-tests/src/test/resources/reload-address-queues-updated.xml ---
@@ -111,7 +111,12 @@ under the License.
<config-delete-addresses>FORCE</config-delete-addresses>
</address-setting>
</address-settings>
-
+
+ <wildcard-addresses>
+ <enabled>true</enabled>
--- End diff --
I believe the only place isEnabled is checked is when the PostOffice is
constructed. If it is enabled then a
`org.apache.activemq.artemis.core.postoffice.impl.WildcardAddressManager` is
used otherwise a
`org.apache.activemq.artemis.core.postoffice.impl.SimpleAddressManager` is
used. This effectively enables/disables wildcard address *routing*. This is
technically different than address *matching*.
---