Github user cshannon commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/1807#discussion_r163306080
--- Diff:
artemis-server/src/main/java/org/apache/activemq/artemis/core/postoffice/impl/PostOfficeImpl.java
---
@@ -532,7 +532,7 @@ public AddressInfo updateAddressInfo(SimpleString
addressName,
public AddressInfo removeAddressInfo(SimpleString address) throws
Exception {
synchronized (addressLock) {
server.callBrokerPlugins(server.hasBrokerPlugins() ? plugin ->
plugin.beforeRemoveAddress(address) : null);
- Bindings bindingsForAddress = getBindingsForAddress(address);
+ final Bindings bindingsForAddress = getDirectBindings(address);
--- End diff --
But I can still add some tests for a different wildcard anyways.
---