ctubbsii commented on code in PR #316:
URL: https://github.com/apache/accumulo-uno/pull/316#discussion_r3769682997
##########
bin/impl/commands.sh:
##########
@@ -287,7 +287,11 @@ 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" "$@"
+ if [[ $ACCUMULO_VERSION =~ ^[23]\..*$ ]]; then
+ "$ACCUMULO_HOME"/bin/accumulo shell -u "$ACCUMULO_USER" -p
"$ACCUMULO_PASSWORD" "$@"
+ else
+ "$ACCUMULO_HOME"/bin/accumulo shell "$@"
+ fi
Review Comment:
This should work with 2.1 also. We should just drop the use of these
properties entirely.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]