HDFS-11827. NPE is thrown when log level changed in BlockPlacementPolicyDefault#chooseRandom() method. Contributed by xupeng.

This commit is contained in:
Arpit Agarwal 2017-05-16 19:51:04 -07:00
parent 82ea3f4545
commit 0e95ff78c3
1 changed files with 2 additions and 2 deletions

View File

@ -718,7 +718,7 @@ public class BlockPlacementPolicyDefault extends BlockPlacementPolicy {
}
Preconditions.checkState(excludedNodes.add(chosenNode), "chosenNode "
+ chosenNode + " is already in excludedNodes " + excludedNodes);
if (LOG.isDebugEnabled()) {
if (LOG.isDebugEnabled() && builder != null) {
builder.append("\nNode ").append(NodeBase.getPath(chosenNode))
.append(" [");
}
@ -747,7 +747,7 @@ public class BlockPlacementPolicyDefault extends BlockPlacementPolicy {
}
}
if (LOG.isDebugEnabled()) {
if (LOG.isDebugEnabled() && builder != null) {
builder.append("\n]");
}