HDFS-3326. svn merge -c 1331626 from trunk
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1331627 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5b56599766
commit
95a762f651
|
@ -448,6 +448,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