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