HDFS-9278. Fix preferredBlockSize typo in OIV XML output. Contributed by Nicole Pazmany.
This commit is contained in:
parent
3e50f478b9
commit
a24c6e8420
|
@ -42,6 +42,8 @@ Trunk (Unreleased)
|
||||||
HDFS-9085. Show renewer information in DelegationTokenIdentifier#toString.
|
HDFS-9085. Show renewer information in DelegationTokenIdentifier#toString.
|
||||||
(Zhihai Xu via cnauroth)
|
(Zhihai Xu via cnauroth)
|
||||||
|
|
||||||
|
HDFS-9278. Fix preferredBlockSize typo in OIV XML output. (Nicole Pazmany via wang)
|
||||||
|
|
||||||
NEW FEATURES
|
NEW FEATURES
|
||||||
|
|
||||||
HDFS-3125. Add JournalService to enable Journal Daemon. (suresh)
|
HDFS-3125. Add JournalService to enable Journal Daemon. (suresh)
|
||||||
|
|
|
@ -242,7 +242,7 @@ public final class PBImageXmlWriter {
|
||||||
private void dumpINodeFile(INodeSection.INodeFile f) {
|
private void dumpINodeFile(INodeSection.INodeFile f) {
|
||||||
o("replication", f.getReplication()).o("mtime", f.getModificationTime())
|
o("replication", f.getReplication()).o("mtime", f.getModificationTime())
|
||||||
.o("atime", f.getAccessTime())
|
.o("atime", f.getAccessTime())
|
||||||
.o("perferredBlockSize", f.getPreferredBlockSize())
|
.o("preferredBlockSize", f.getPreferredBlockSize())
|
||||||
.o("permission", dumpPermission(f.getPermission()));
|
.o("permission", dumpPermission(f.getPermission()));
|
||||||
dumpAcls(f.getAcl());
|
dumpAcls(f.getAcl());
|
||||||
if (f.getBlocksCount() > 0) {
|
if (f.getBlocksCount() > 0) {
|
||||||
|
|
Loading…
Reference in New Issue