HBASE-11755 VisibilityController returns the wrong value for preBalanceSwitch (Matteo Bertozzi)

This commit is contained in:
Andrew Purtell 2014-08-15 10:31:47 -07:00
parent 3325bbe84f
commit 0ca9a85c4d
1 changed files with 1 additions and 1 deletions

View File

@ -498,7 +498,7 @@ public class VisibilityController extends BaseRegionObserver implements MasterOb
@Override
public boolean preBalanceSwitch(ObserverContext<MasterCoprocessorEnvironment> ctx,
boolean newValue) throws IOException {
return false;
return newValue;
}
@Override