This is an automated email from the ASF dual-hosted git repository. ddanielr pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/main by this push: new a6d28ca987 Fix accumulo-cluster script (#5655) a6d28ca987 is described below commit a6d28ca987c3163eca863be346dd8da211900704 Author: Kevin Rathbun <krath...@apache.org> AuthorDate: Tue Jun 17 16:10:20 2025 -0400 Fix accumulo-cluster script (#5655) Was using a flag which has since been replaced (-group -> --include-groups) --- assemble/bin/accumulo-cluster | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assemble/bin/accumulo-cluster b/assemble/bin/accumulo-cluster index 7d165b8e0a..e398808b18 100755 --- a/assemble/bin/accumulo-cluster +++ b/assemble/bin/accumulo-cluster @@ -513,7 +513,7 @@ function control_services() { # to complete before zapping the nodes in ZooKeeper ssh_wait echo "Cleaning tablet server entries from zookeeper for resource group $group" - debugOrRun "$accumulo_cmd" org.apache.accumulo.server.util.ZooZap -verbose -tservers -group "$group" + debugOrRun "$accumulo_cmd" org.apache.accumulo.server.util.ZooZap -verbose -tservers --include-groups "$group" fi echo "done" done @@ -567,7 +567,7 @@ function control_services() { # to complete before zapping the nodes in ZooKeeper ssh_wait echo "Cleaning scan server entries from zookeeper for resource group $group" - debugOrRun "$accumulo_cmd" org.apache.accumulo.server.util.ZooZap -verbose -sservers -group "$group" + debugOrRun "$accumulo_cmd" org.apache.accumulo.server.util.ZooZap -verbose -sservers --include-groups "$group" fi done fi @@ -592,7 +592,7 @@ function control_services() { # to complete before zapping the nodes in ZooKeeper ssh_wait echo "Cleaning compactor entries from zookeeper for resource group $group" - debugOrRun "$accumulo_cmd" org.apache.accumulo.server.util.ZooZap -verbose -compactors -group "$group" + debugOrRun "$accumulo_cmd" org.apache.accumulo.server.util.ZooZap -verbose -compactors --include-groups "$group" fi done fi