Skip to content

Commit

Permalink
HBASE-27352 - Quoted string argument with spaces passed from command …
Browse files Browse the repository at this point in the history
…line are propagated wrongly to the underlying java class (#4754)

Signed-off-by: Nick Dimiduk <[email protected]>
  • Loading branch information
ujjawal4046 authored and ndimiduk committed Sep 13, 2022
1 parent 7ae66a1 commit 74126ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/hbase
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,7 @@ if [ "${DEBUG}" = "true" ]; then
fi

# resolve the command arguments
read -r -a CMD_ARGS <<< "$@"
CMD_ARGS=("$@")
if [ "${#JSHELL_ARGS[@]}" -gt 0 ] ; then
CMD_ARGS=("${JSHELL_ARGS[@]}" "${CMD_ARGS[@]}")
fi
Expand Down

0 comments on commit 74126ea

Please sign in to comment.