HDFS-5170. BlockPlacementPolicyDefault uses the wrong classname when alerting to enable debug logging. (Andrew Wang)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1520962 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9fed38f149
commit
5609b5e654
@ -51,6 +51,9 @@ Release 2.3.0 - UNRELEASED
|
||||
HDFS-5164. deleteSnapshot should check if OperationCategory.WRITE is
|
||||
possible before taking write lock. (Colin Patrick McCabe)
|
||||
|
||||
HDFS-5170. BlockPlacementPolicyDefault uses the wrong classname when
|
||||
alerting to enable debug logging. (Andrew Wang)
|
||||
|
||||
Release 2.1.1-beta - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -55,7 +55,7 @@ public class BlockPlacementPolicyDefault extends BlockPlacementPolicy {
|
||||
|
||||
private static final String enableDebugLogging =
|
||||
"For more information, please enable DEBUG log level on "
|
||||
+ LOG.getClass().getName();
|
||||
+ BlockPlacementPolicy.class.getName();
|
||||
|
||||
protected boolean considerLoad;
|
||||
private boolean preferLocalNode = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user