This is an automated email from the ASF dual-hosted git repository.
dlmarion 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 d2c75319ee Fixed OBE '-g' use in accumulo-cluster (#5569)
d2c75319ee is described below
commit d2c75319ee8677cf8a109b16340efc2062122128
Author: Dave Marion <[email protected]>
AuthorDate: Wed May 21 16:19:43 2025 -0400
Fixed OBE '-g' use in accumulo-cluster (#5569)
---
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 06e63a62d2..7d165b8e0a 100755
--- a/assemble/bin/accumulo-cluster
+++ b/assemble/bin/accumulo-cluster
@@ -439,7 +439,7 @@ function control_services() {
hosts="SSERVER_HOSTS_$group"
for sserver in ${!hosts}; do
if canRunOnHost "$sserver"; then
- execute_command "$operation" "$sserver" sserver "$group" "-g"
"$group"
+ execute_command "$operation" "$sserver" sserver "$group" "-o"
"sserver.group=$group"
fi
done
done