HDFS-9210. Fix some misuse of %n in VolumeScanner#printStats. Contributed by Xiaoyu Yao.
This commit is contained in:
parent
ba3c197878
commit
3d50855952
@ -2060,6 +2060,8 @@ Release 2.8.0 - UNRELEASED
|
||||
HDFS-9187. Fix null pointer error in Globber when FS was not constructed
|
||||
via FileSystem#createFileSystem (cmccabe)
|
||||
|
||||
HDFS-9210. Fix some misuse of %n in VolumeScanner#printStats. (xyao)
|
||||
|
||||
Release 2.7.2 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -216,9 +216,8 @@ private static double positiveMsToHours(long ms) {
|
||||
}
|
||||
|
||||
public void printStats(StringBuilder p) {
|
||||
p.append("Block scanner information for volume " +
|
||||
volume.getStorageID() + " with base path " + volume.getBasePath() +
|
||||
"%n");
|
||||
p.append(String.format("Block scanner information for volume %s with base" +
|
||||
" path %s%n" + volume.getStorageID(), volume.getBasePath()));
|
||||
synchronized (stats) {
|
||||
p.append(String.format("Bytes verified in last hour : %57d%n",
|
||||
stats.bytesScannedInPastHour));
|
||||
@ -245,7 +244,7 @@ public void printStats(StringBuilder p) {
|
||||
stats.lastBlockScanned.toString())));
|
||||
p.append(String.format("More blocks to scan in period : %57s%n",
|
||||
!stats.eof));
|
||||
p.append("%n");
|
||||
p.append(String.format("%n"));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user