Github user clebertsuconic commented on a diff in the pull request: https://github.com/apache/activemq-artemis/pull/2401#discussion_r229835269 --- Diff: artemis-server/src/main/java/org/apache/activemq/artemis/core/config/Configuration.java --- @@ -493,6 +493,17 @@ Configuration addDiscoveryGroupConfiguration(String key, */ Configuration setManagementAddress(SimpleString address); + /** + * Sets whether {@link #getManagementAddress()} ignores Global Max Size limit. + */ + Configuration setManagementAddressIgnoreGlobalMaxSize(boolean value); + + /** + * Returns {@code true} if {@link #getManagementAddress()} ignores Global Max Size limit. + */ + boolean isManagementAddressIgnoreGlobalMaxSize(); --- End diff -- Why not simply configure the management address as -1, which would be unlimited?
---