This is an automated email from the ASF dual-hosted git repository. dlmarion pushed a commit to branch 2.1 in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/2.1 by this push: new ed4d914112 Fix copy paste error in accumulo-cluster ed4d914112 is described below commit ed4d914112e361e1560f372c5e5b7e15d6fdf4ca Author: Dave Marion <dlmar...@apache.org> AuthorDate: Fri Nov 8 21:43:15 2024 +0000 Fix copy paste error in accumulo-cluster --- assemble/bin/accumulo-cluster | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assemble/bin/accumulo-cluster b/assemble/bin/accumulo-cluster index 48d2e5c389..130f7adf46 100755 --- a/assemble/bin/accumulo-cluster +++ b/assemble/bin/accumulo-cluster @@ -197,7 +197,7 @@ function start_service() { } function start_compactors() { - if [[ -z $SSERVER_GROUPS ]]; then + if [[ -z $COMPACTION_QUEUES ]]; then echo "No compactor queues configured..." else echo -n "Starting compactor servers ..." @@ -222,7 +222,7 @@ function start_compactors() { } function stop_compactors() { - if [[ -z $SSERVER_GROUPS ]]; then + if [[ -z $COMPACTION_QUEUES ]]; then echo "No compactor queues configured..." else echo "Stopping compactor servers ..."