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/trunk@1520961 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
40cf0068d8
commit
4f2bf68b73
|
@ -289,6 +289,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…
Reference in New Issue