Skip to content

Commit 0f36539

Browse files
authored
HDFS-16712. Fix incorrect placeholder in DataNode.java (#4672). Contributed by ZanderXu.
Signed-off-by: Ayush Saxena <ayushsaxena@apache.org>
1 parent 69f6fdb commit 0f36539

File tree

1 file changed

+1
-1
lines changed
  • hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode

1 file changed

+1
-1
lines changed

hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/DataNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3642,7 +3642,7 @@ public String getDiskBalancerStatus() {
36423642
try {
36433643
return getDiskBalancer().queryWorkStatus().toJsonString();
36443644
} catch (IOException ex) {
3645-
LOG.debug("Reading diskbalancer Status failed. ex:{}", ex);
3645+
LOG.debug("Reading diskbalancer Status failed.", ex);
36463646
return "";
36473647
}
36483648
}

0 commit comments

Comments
 (0)