HADOOP-12451. Setting HADOOP_HOME explicitly should be allowed. (kasha)

This commit is contained in:
Karthik Kambatla 2015-10-01 11:29:50 -07:00
parent c6f30e5913
commit db145e0c9a
2 changed files with 6 additions and 1 deletions

View File

@ -707,6 +707,8 @@ Release 2.7.2 - UNRELEASED
HADOOP-12213. Interrupted exception can occur when Client#stop is called.
(Kuhu Shukla via ozawa)
HADOOP-12451. Setting HADOOP_HOME explicitly should be allowed. (kasha)
Release 2.7.1 - 2015-07-06

View File

@ -250,7 +250,10 @@ TOOL_PATH="${TOOL_PATH:-$HADOOP_PREFIX/share/hadoop/tools/lib/*}"
HADOOP_OPTS="$HADOOP_OPTS -Dhadoop.log.dir=$HADOOP_LOG_DIR"
HADOOP_OPTS="$HADOOP_OPTS -Dhadoop.log.file=$HADOOP_LOGFILE"
HADOOP_HOME=$HADOOP_PREFIX
if [ "$HADOOP_HOME" = "" ]; then
HADOOP_HOME=$HADOOP_PREFIX
fi
if [ "$cygwin" = true ]; then
HADOOP_HOME=$(cygpath -w "$HADOOP_HOME" 2>/dev/null)
fi