This is an automated email from the ASF dual-hosted git repository. brusdev pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
commit 9e7246056533a692d5ab252168d91ae8b516e564 Author: Andy Taylor <[email protected]> AuthorDate: Sat Feb 20 08:44:03 2021 +0000 ARTEMIS-3129 - added roles needed for the browse tab for clarity https://issues.apache.org/jira/browse/ARTEMIS-3129 --- .../org/apache/activemq/artemis/cli/commands/etc/management.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/artemis-cli/src/main/resources/org/apache/activemq/artemis/cli/commands/etc/management.xml b/artemis-cli/src/main/resources/org/apache/activemq/artemis/cli/commands/etc/management.xml index 7be8159..e5ea4f0 100644 --- a/artemis-cli/src/main/resources/org/apache/activemq/artemis/cli/commands/etc/management.xml +++ b/artemis-cli/src/main/resources/org/apache/activemq/artemis/cli/commands/etc/management.xml @@ -34,6 +34,9 @@ <access method="get*" roles="${role}"/> <access method="is*" roles="${role}"/> <access method="set*" roles="${role}"/> + <!-- Note count and browse are need to access the browse tab in the console--> + <access method="browse*" roles="${role}"/> + <access method="count*" roles="${role}"/> <access method="*" roles="${role}"/> </match> <!--example of how to configure a specific object-->
