HDFS-9278. Fix preferredBlockSize typo in OIV XML output. Contributed by Nicole Pazmany.

This commit is contained in:
Andrew Wang 2015-10-21 14:58:21 -07:00
parent 3e50f478b9
commit a24c6e8420
2 changed files with 3 additions and 1 deletions

View File

@ -42,6 +42,8 @@ Trunk (Unreleased)
HDFS-9085. Show renewer information in DelegationTokenIdentifier#toString.
(Zhihai Xu via cnauroth)
HDFS-9278. Fix preferredBlockSize typo in OIV XML output. (Nicole Pazmany via wang)
NEW FEATURES
HDFS-3125. Add JournalService to enable Journal Daemon. (suresh)

View File

@ -242,7 +242,7 @@ public final class PBImageXmlWriter {
private void dumpINodeFile(INodeSection.INodeFile f) {
o("replication", f.getReplication()).o("mtime", f.getModificationTime())
.o("atime", f.getAccessTime())
.o("perferredBlockSize", f.getPreferredBlockSize())
.o("preferredBlockSize", f.getPreferredBlockSize())
.o("permission", dumpPermission(f.getPermission()));
dumpAcls(f.getAcl());
if (f.getBlocksCount() > 0) {