Return-Path: X-Original-To: apmail-hadoop-common-commits-archive@www.apache.org Delivered-To: apmail-hadoop-common-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9446F11ACC for ; Wed, 23 Apr 2014 22:36:36 +0000 (UTC) Received: (qmail 44190 invoked by uid 500); 23 Apr 2014 22:36:35 -0000 Delivered-To: apmail-hadoop-common-commits-archive@hadoop.apache.org Received: (qmail 44134 invoked by uid 500); 23 Apr 2014 22:36:35 -0000 Mailing-List: contact common-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: common-dev@hadoop.apache.org Delivered-To: mailing list common-commits@hadoop.apache.org Received: (qmail 44124 invoked by uid 99); 23 Apr 2014 22:36:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Apr 2014 22:36:34 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Apr 2014 22:36:33 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 8CDD8238889B; Wed, 23 Apr 2014 22:36:13 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1589530 - in /hadoop/common/trunk/hadoop-common-project/hadoop-common: CHANGES.txt src/main/bin/hadoop-config.sh Date: Wed, 23 Apr 2014 22:36:13 -0000 To: common-commits@hadoop.apache.org From: wang@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140423223613.8CDD8238889B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: wang Date: Wed Apr 23 22:36:12 2014 New Revision: 1589530 URL: http://svn.apache.org/r1589530 Log: HADOOP-10531. hadoop-config.sh - bug in --hosts argument. Contributed by Sebastien Barrier. Modified: hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt hadoop/common/trunk/hadoop-common-project/hadoop-common/src/main/bin/hadoop-config.sh Modified: hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt URL: http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1589530&r1=1589529&r2=1589530&view=diff ============================================================================== --- hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt (original) +++ hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt Wed Apr 23 22:36:12 2014 @@ -404,6 +404,9 @@ Release 2.5.0 - UNRELEASED HADOOP-10251. Both NameNodes could be in STANDBY State if SNN network is unstable (Vinayakumar B via umamahesh) + HADOOP-10531. hadoop-config.sh - bug in --hosts argument. + (Sebastien Barrier via wang) + Release 2.4.1 - UNRELEASED INCOMPATIBLE CHANGES Modified: hadoop/common/trunk/hadoop-common-project/hadoop-common/src/main/bin/hadoop-config.sh URL: http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-common-project/hadoop-common/src/main/bin/hadoop-config.sh?rev=1589530&r1=1589529&r2=1589530&view=diff ============================================================================== --- hadoop/common/trunk/hadoop-common-project/hadoop-common/src/main/bin/hadoop-config.sh (original) +++ hadoop/common/trunk/hadoop-common-project/hadoop-common/src/main/bin/hadoop-config.sh Wed Apr 23 22:36:12 2014 @@ -97,7 +97,7 @@ then if [ "--hosts" = "$1" ] then shift - export HADOOP_SLAVES="${HADOOP_CONF_DIR}/$$1" + export HADOOP_SLAVES="${HADOOP_CONF_DIR}/$1" shift elif [ "--hostnames" = "$1" ] then