HDFS-5979. Typo and logger fix for fsimage PB code. (wang)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1570070 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e2c0af8e7b
commit
077adb25b7
|
@ -535,6 +535,8 @@ Release 2.4.0 - UNRELEASED
|
||||||
HDFS-5742. DatanodeCluster (mini cluster of DNs) fails to start.
|
HDFS-5742. DatanodeCluster (mini cluster of DNs) fails to start.
|
||||||
(Arpit Agarwal)
|
(Arpit Agarwal)
|
||||||
|
|
||||||
|
HDFS-5979. Typo and logger fix for fsimage PB code. (wang)
|
||||||
|
|
||||||
BREAKDOWN OF HDFS-5698 SUBTASKS AND RELATED JIRAS
|
BREAKDOWN OF HDFS-5698 SUBTASKS AND RELATED JIRAS
|
||||||
|
|
||||||
HDFS-5717. Save FSImage header in protobuf. (Haohui Mai via jing9)
|
HDFS-5717. Save FSImage header in protobuf. (Haohui Mai via jing9)
|
||||||
|
|
|
@ -75,7 +75,7 @@ public final class FSImageFormatPBINode {
|
||||||
private static final AclEntryType[] ACL_ENTRY_TYPE_VALUES = AclEntryType
|
private static final AclEntryType[] ACL_ENTRY_TYPE_VALUES = AclEntryType
|
||||||
.values();
|
.values();
|
||||||
|
|
||||||
private static final Log LOG = LogFactory.getLog(FSImageFormatProtobuf.class);
|
private static final Log LOG = LogFactory.getLog(FSImageFormatPBINode.class);
|
||||||
|
|
||||||
public final static class Loader {
|
public final static class Loader {
|
||||||
public static PermissionStatus loadPermission(long id,
|
public static PermissionStatus loadPermission(long id,
|
||||||
|
|
|
@ -268,7 +268,7 @@ public final class FSImageFormatProtobuf {
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
LOG.warn("Unregconized section " + n);
|
LOG.warn("Unrecognized section " + n);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue