HDFS-9210. Fix some misuse of %n in VolumeScanner#printStats. Contributed by Xiaoyu Yao.
(cherry picked from commit b11008d54d
)
This commit is contained in:
parent
7bb48ed162
commit
924e1583ed
|
@ -1690,6 +1690,9 @@ Release 2.8.0 - UNRELEASED
|
|||
HDFS-9708. FSNamesystem.initAuditLoggers() doesn't trim classnames
|
||||
(Mingliang Liu via stevel)
|
||||
|
||||
HDFS-9210. Fix some misuse of %n in VolumeScanner#printStats.
|
||||
(Xiaoyu Yao)
|
||||
|
||||
Release 2.7.3 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -216,9 +216,8 @@ public class VolumeScanner extends Thread {
|
|||
}
|
||||
|
||||
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 class VolumeScanner extends Thread {
|
|||
stats.lastBlockScanned.toString())));
|
||||
p.append(String.format("More blocks to scan in period : %57s%n",
|
||||
!stats.eof));
|
||||
p.append("%n");
|
||||
p.append(System.lineSeparator());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue