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 9f3ad6e652 Fix compactor.queue to compactor.group (#5215) 9f3ad6e652 is described below commit 9f3ad6e65216f592ba26b7e80a6a7060371537ff Author: Daniel Roberts <ddani...@gmail.com> AuthorDate: Mon Dec 30 11:07:10 2024 -0500 Fix compactor.queue to compactor.group (#5215) Switches the property override back to `compactor.group` so the compactors join the correct queue. --- assemble/bin/accumulo-cluster | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assemble/bin/accumulo-cluster b/assemble/bin/accumulo-cluster index 1bae383c9b..3d65733213 100755 --- a/assemble/bin/accumulo-cluster +++ b/assemble/bin/accumulo-cluster @@ -535,7 +535,7 @@ function control_services() { hosts="COMPACTOR_HOSTS_$group" for compactor in ${!hosts}; do if canRunOnHost "$compactor"; then - execute_command "$operation" "$compactor" compactor "$group" "-o" "compactor.queue=$group" + execute_command "$operation" "$compactor" compactor "$group" "-o" "compactor.group=$group" fi done done