HDFS-16329. Fix log format for BlockManager (#3670)

Signed-off-by: Akira Ajisaka <aajisaka@apache.org>
This commit is contained in:
litao 2021-11-18 23:42:01 +08:00 committed by GitHub
parent 5b05068fdc
commit dc751df63b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4541,7 +4541,7 @@ boolean isNodeHealthyForDecommissionOrMaintenance(DatanodeDescriptor node) {
if (pendingReconstructionBlocksCount == 0 &&
lowRedundancyBlocksCount == 0) {
LOG.info("Node {} is dead and there are no low redundancy" +
" blocks or blocks pending reconstruction. Safe to decommission or",
" blocks or blocks pending reconstruction. Safe to decommission or" +
" put in maintenance.", node);
return true;
}