Skip to content

Commit

Permalink
HADOOP-13563. hadoop_subcommand_opts should print name not actual con…
Browse files Browse the repository at this point in the history
…tent during debug

Signed-off-by: Allen Wittenauer <[email protected]>
  • Loading branch information
aw-was-here committed Sep 9, 2016
1 parent c7a5b7d commit d294200
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit d294200

Please sign in to comment.