HADOOP-10531. hadoop-config.sh - bug in --hosts argument. Contributed by Sebastien Barrier.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1589531 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8bcb8dba51
commit
69a90ff22f
|
@ -81,6 +81,9 @@ Release 2.5.0 - UNRELEASED
|
||||||
HADOOP-10251. Both NameNodes could be in STANDBY State if SNN network is unstable
|
HADOOP-10251. Both NameNodes could be in STANDBY State if SNN network is unstable
|
||||||
(Vinayakumar B via umamahesh)
|
(Vinayakumar B via umamahesh)
|
||||||
|
|
||||||
|
HADOOP-10531. hadoop-config.sh - bug in --hosts argument.
|
||||||
|
(Sebastien Barrier via wang)
|
||||||
|
|
||||||
Release 2.4.1 - UNRELEASED
|
Release 2.4.1 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -93,7 +93,7 @@ then
|
||||||
if [ "--hosts" = "$1" ]
|
if [ "--hosts" = "$1" ]
|
||||||
then
|
then
|
||||||
shift
|
shift
|
||||||
export HADOOP_SLAVES="${HADOOP_CONF_DIR}/$$1"
|
export HADOOP_SLAVES="${HADOOP_CONF_DIR}/$1"
|
||||||
shift
|
shift
|
||||||
elif [ "--hostnames" = "$1" ]
|
elif [ "--hostnames" = "$1" ]
|
||||||
then
|
then
|
||||||
|
|
Loading…
Reference in New Issue