Github user pgfox commented on the issue:
https://github.com/apache/activemq-artemis/pull/1643
@mtaylor I changed
ActiveMQServerControlImpl#listAddresses(java.lang.String, int, int) to use
``
server.getManagementService().getResources(AddressControl.class)
``
rather than call
``
server.getPostOffice().getAddresses()
``
It was easier to get the memorySize and paging info from the
AddressControl.
It seems to work fine but just wondering if it is a bad idea as you avoided
it initially?
thanks
Pat
---