HDFS-16712. Fix incorrect placeholder in DataNode.java (#4672). Contributed by ZanderXu.

Signed-off-by: Ayush Saxena <ayushsaxena@apache.org>
This commit is contained in:
xuzq 2022-08-03 15:31:41 +08:00 committed by Ayush Saxena
parent 4e842a7ff3
commit e024d1a3f8
No known key found for this signature in database
GPG Key ID: D09AE71061AB564D
1 changed files with 1 additions and 1 deletions

View File

@ -3529,7 +3529,7 @@ public class DataNode extends ReconfigurableBase
try {
return getDiskBalancer().queryWorkStatus().toJsonString();
} catch (IOException ex) {
LOG.debug("Reading diskbalancer Status failed. ex:{}", ex);
LOG.debug("Reading diskbalancer Status failed.", ex);
return "";
}
}