HDFS-9210. Fix some misuse of %n in VolumeScanner#printStats. Contributed by Xiaoyu Yao.

(cherry picked from commit b11008d54d)
This commit is contained in:
Xiaoyu Yao 2016-02-01 11:55:27 -08:00
parent 7bb48ed162
commit 924e1583ed
2 changed files with 6 additions and 4 deletions

View File

@ -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

View File

@ -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(System.lineSeparator());
}
}