Skip to content

Commit

Permalink
Fix copy paste error in accumulo-cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
dlmarion committed Nov 8, 2024
1 parent 513d818 commit ed4d914
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assemble/bin/accumulo-cluster
Original file line number Diff line number Diff line change
Expand Up @@ -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 ..."
Expand All @@ -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 ..."
Expand Down

0 comments on commit ed4d914

Please sign in to comment.