Repository: hadoop Updated Branches: refs/heads/HADOOP-13341 a37f887c3 -> af9f0e7bf
HADOOP-13563. hadoop_subcommand_opts should print name not actual content during debug Signed-off-by: Allen Wittenauer <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/af9f0e7b Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/af9f0e7b Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/af9f0e7b Branch: refs/heads/HADOOP-13341 Commit: af9f0e7bfcc7f473b85ec7ace198654384423e68 Parents: a37f887 Author: Allen Wittenauer <[email protected]> Authored: Tue Aug 30 15:23:29 2016 -0700 Committer: Allen Wittenauer <[email protected]> Committed: Tue Aug 30 23:04:07 2016 -0700 ---------------------------------------------------------------------- .../hadoop-common/src/main/bin/hadoop-functions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/af9f0e7b/hadoop-common-project/hadoop-common/src/main/bin/hadoop-functions.sh ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/src/main/bin/hadoop-functions.sh b/hadoop-common-project/hadoop-common/src/main/bin/hadoop-functions.sh index 91546d4..b6e2b59 100755 --- a/hadoop-common-project/hadoop-common/src/main/bin/hadoop-functions.sh +++ b/hadoop-common-project/hadoop-common/src/main/bin/hadoop-functions.sh @@ -2057,7 +2057,7 @@ function hadoop_subcommand_opts fi if [[ -n ${!uvar} ]]; then - hadoop_debug "Appending ${!uvar} onto HADOOP_OPTS" + hadoop_debug "Appending ${uvar} onto HADOOP_OPTS" HADOOP_OPTS="${HADOOP_OPTS} ${!uvar}" return 0 fi @@ -2102,7 +2102,7 @@ function hadoop_subcommand_secure_opts uvar="${uprogram}_${ucommand}_SECURE_EXTRA_OPTS" if [[ -n ${!uvar} ]]; then - hadoop_debug "Appending ${!uvar} onto HADOOP_OPTS" + hadoop_debug "Appending ${uvar} onto HADOOP_OPTS" HADOOP_OPTS="${HADOOP_OPTS} ${!uvar}" return 0 fi --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
