You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by aw...@apache.org on 2014/12/17 18:06:15 UTC

hadoop git commit: HADOOP-11397. Can't override HADOOP_IDENT_STRING (Kengo Seki via aw)

Repository: hadoop
Updated Branches:
  refs/heads/trunk e996a1bfd -> bc21a1c07


HADOOP-11397. Can't override HADOOP_IDENT_STRING (Kengo Seki via aw)


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/bc21a1c0
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/bc21a1c0
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/bc21a1c0

Branch: refs/heads/trunk
Commit: bc21a1c07a5da7a81828f5cdf7acf7870c7e3d21
Parents: e996a1b
Author: Allen Wittenauer <aw...@apache.org>
Authored: Wed Dec 17 09:06:01 2014 -0800
Committer: Allen Wittenauer <aw...@apache.org>
Committed: Wed Dec 17 09:06:01 2014 -0800

----------------------------------------------------------------------
 hadoop-common-project/hadoop-common/CHANGES.txt                    | 2 ++
 .../hadoop-common/src/main/bin/hadoop-functions.sh                 | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hadoop/blob/bc21a1c0/hadoop-common-project/hadoop-common/CHANGES.txt
----------------------------------------------------------------------
diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt
index 8b9f228..6772681 100644
--- a/hadoop-common-project/hadoop-common/CHANGES.txt
+++ b/hadoop-common-project/hadoop-common/CHANGES.txt
@@ -369,6 +369,8 @@ Trunk (Unreleased)
 
     HADOOP-11380. Restore Rack Awareness documenation (aw)
 
+    HADOOP-11397. Can't override HADOOP_IDENT_STRING (Kengo Seki via aw)
+
   OPTIMIZATIONS
 
     HADOOP-7761. Improve the performance of raw comparisons. (todd)

http://git-wip-us.apache.org/repos/asf/hadoop/blob/bc21a1c0/hadoop-common-project/hadoop-common/src/main/bin/hadoop-functions.sh
----------------------------------------------------------------------
diff --git a/hadoop-common-project/hadoop-common/src/main/bin/hadoop-functions.sh b/hadoop-common-project/hadoop-common/src/main/bin/hadoop-functions.sh
index af45cec..a953e0c 100644
--- a/hadoop-common-project/hadoop-common/src/main/bin/hadoop-functions.sh
+++ b/hadoop-common-project/hadoop-common/src/main/bin/hadoop-functions.sh
@@ -163,7 +163,7 @@ function hadoop_basic_init
     export HADOOP_MAPRED_HOME="${HADOOP_PREFIX}"
   fi
   
-  HADOOP_IDENT_STRING=${HADOP_IDENT_STRING:-$USER}
+  HADOOP_IDENT_STRING=${HADOOP_IDENT_STRING:-$USER}
   HADOOP_LOG_DIR=${HADOOP_LOG_DIR:-"${HADOOP_PREFIX}/logs"}
   HADOOP_LOGFILE=${HADOOP_LOGFILE:-hadoop.log}
   HADOOP_LOGLEVEL=${HADOOP_LOGLEVEL:-INFO}