Revert "HDFS-10620. StringBuilder created and appended even if logging is disabled. Contributed by Staffan Friberg."
This reverts commit 91f47ab5f9
.
This commit is contained in:
parent
9ab153d7ae
commit
e377e94f64
|
@ -1210,19 +1210,16 @@ public class BlockManager implements BlockStatsMXBean {
|
|||
if (!isPopulatingReplQueues()) {
|
||||
return;
|
||||
}
|
||||
StringBuilder datanodes = blockLog.isDebugEnabled()
|
||||
? new StringBuilder() : null;
|
||||
StringBuilder datanodes = new StringBuilder();
|
||||
for (DatanodeStorageInfo storage : blocksMap.getStorages(b)) {
|
||||
if (storage.getState() != State.NORMAL) {
|
||||
continue;
|
||||
}
|
||||
final DatanodeDescriptor node = storage.getDatanodeDescriptor();
|
||||
invalidateBlocks.add(b, node, false);
|
||||
if (datanodes != null) {
|
||||
datanodes.append(node).append(" ");
|
||||
}
|
||||
datanodes.append(node).append(" ");
|
||||
}
|
||||
if (datanodes != null & datanodes.length() != 0) {
|
||||
if (datanodes.length() != 0) {
|
||||
blockLog.debug("BLOCK* addToInvalidates: {} {}", b, datanodes);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue