Github user jbertram commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/2466#discussion_r246562512
--- Diff:
artemis-server/src/main/java/org/apache/activemq/artemis/core/server/impl/ActiveMQServerImpl.java
---
@@ -3604,4 +3605,14 @@ private void
deployReloadableConfigFromConfiguration() throws Exception {
return externalComponents;
}
+ @Override
+ public Set<Consumer> queueConsumersQuery(SimpleString queueName) {
--- End diff --
This method isn't necessary. You can use the `locateQueue` method and
simply invoke `getConsumers` on the returned value.
---