HADOOP-12451. Setting HADOOP_HOME explicitly should be allowed. (kasha)
This commit is contained in:
parent
c6f30e5913
commit
db145e0c9a
|
@ -708,6 +708,8 @@ Release 2.7.2 - UNRELEASED
|
||||||
HADOOP-12213. Interrupted exception can occur when Client#stop is called.
|
HADOOP-12213. Interrupted exception can occur when Client#stop is called.
|
||||||
(Kuhu Shukla via ozawa)
|
(Kuhu Shukla via ozawa)
|
||||||
|
|
||||||
|
HADOOP-12451. Setting HADOOP_HOME explicitly should be allowed. (kasha)
|
||||||
|
|
||||||
Release 2.7.1 - 2015-07-06
|
Release 2.7.1 - 2015-07-06
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -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.dir=$HADOOP_LOG_DIR"
|
||||||
HADOOP_OPTS="$HADOOP_OPTS -Dhadoop.log.file=$HADOOP_LOGFILE"
|
HADOOP_OPTS="$HADOOP_OPTS -Dhadoop.log.file=$HADOOP_LOGFILE"
|
||||||
|
|
||||||
|
if [ "$HADOOP_HOME" = "" ]; then
|
||||||
HADOOP_HOME=$HADOOP_PREFIX
|
HADOOP_HOME=$HADOOP_PREFIX
|
||||||
|
fi
|
||||||
if [ "$cygwin" = true ]; then
|
if [ "$cygwin" = true ]; then
|
||||||
HADOOP_HOME=$(cygpath -w "$HADOOP_HOME" 2>/dev/null)
|
HADOOP_HOME=$(cygpath -w "$HADOOP_HOME" 2>/dev/null)
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue