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:
parent
cd271773ac
commit
a22c138291
|
@ -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)
|
||||
|
|
|
@ -457,7 +457,7 @@ public class FSNamesystem implements Namesystem, FSClusterStats,
|
|||
|
||||
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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue