HDFS-3326. Append enabled log message uses the wrong variable. Contributed by Matthew Jacobs

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1331626 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Eli Collins 2012-04-27 23:03:45 +00:00
parent cd271773ac
commit a22c138291
2 changed files with 4 additions and 1 deletions

View File

@ -570,6 +570,9 @@ Release 2.0.0 - UNRELEASED
HDFS-3309. HttpFS (Hoop) chmod not supporting octal and sticky bit
permissions. (tucu)
HDFS-3326. Append enabled log message uses the wrong variable.
(Matthew Jacobs via eli)
BREAKDOWN OF HDFS-1623 SUBTASKS
HDFS-2179. Add fencing framework and mechanisms for NameNode HA. (todd)

View File

@ -457,7 +457,7 @@ public static FSNamesystem loadFromDisk(Configuration conf,
this.accessTimePrecision = conf.getLong(DFS_NAMENODE_ACCESSTIME_PRECISION_KEY, 0);
this.supportAppends = conf.getBoolean(DFS_SUPPORT_APPEND_KEY, DFS_SUPPORT_APPEND_DEFAULT);
LOG.info("Append Enabled: " + haEnabled);
LOG.info("Append Enabled: " + supportAppends);
this.dtpReplaceDatanodeOnFailure = ReplaceDatanodeOnFailure.get(conf);