This is an automated email from the ASF dual-hosted git repository.
DomGarguilo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo-uno.git
The following commit(s) were added to refs/heads/main by this push:
new 8ace96b Use client properties for Accumulo shell authentication (#316)
8ace96b is described below
commit 8ace96b045d06688261005e9283f81f6708bea8e
Author: Dom G. <[email protected]>
AuthorDate: Fri Aug 14 11:10:30 2026 -0400
Use client properties for Accumulo shell authentication (#316)
* remove explicit username and password args from `uno ashell` since those
values are already read from the props file and accumulo 4 no longer accepts
the removed args
---
bin/impl/commands.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/impl/commands.sh b/bin/impl/commands.sh
index b8a7f93..05251a9 100755
--- a/bin/impl/commands.sh
+++ b/bin/impl/commands.sh
@@ -287,7 +287,7 @@ function uno_status_main() {
function uno_ashell_main() {
check_dirs ACCUMULO_HOME || return 1
- "$ACCUMULO_HOME"/bin/accumulo shell -u "$ACCUMULO_USER" -p
"$ACCUMULO_PASSWORD" "$@"
+ "$ACCUMULO_HOME"/bin/accumulo shell "$@"
}
function uno_jshell_main() {