HBASE-19998 Flakey TestVisibilityLabelsWithDefaultVisLabelService
This commit is contained in:
parent
6e35f5eab9
commit
2f1b3eab67
|
@ -54,6 +54,7 @@ public class MoveRegionProcedure extends AbstractStateMachineRegionProcedure<Mov
|
|||
public MoveRegionProcedure(final MasterProcedureEnv env, final RegionPlan plan) {
|
||||
super(env, plan.getRegionInfo());
|
||||
this.plan = plan;
|
||||
LOG.info("REMOVE", new Throwable("REMOVE: Just to see who is calling Move!!!"));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -880,7 +880,7 @@ public class MasterProcedureScheduler extends AbstractProcedureScheduler {
|
|||
boolean hasLock = true;
|
||||
final LockAndQueue[] regionLocks = new LockAndQueue[regionInfo.length];
|
||||
for (int i = 0; i < regionInfo.length; ++i) {
|
||||
LOG.info(procedure + " " + table + " " + regionInfo[i].getRegionNameAsString());
|
||||
LOG.info(procedure + ", table=" + table + ", " + regionInfo[i].getRegionNameAsString());
|
||||
assert table != null;
|
||||
assert regionInfo[i] != null;
|
||||
assert regionInfo[i].getTable() != null;
|
||||
|
|
|
@ -189,8 +189,7 @@ implements ServerProcedureInterface {
|
|||
* @throws IOException
|
||||
*/
|
||||
private void processMeta(final MasterProcedureEnv env) throws IOException {
|
||||
if (LOG.isDebugEnabled()) LOG.debug(this + "; Processing hbase:meta that was on " +
|
||||
this.serverName);
|
||||
LOG.debug("{}; processing hbase:meta", this);
|
||||
|
||||
// Assign meta if still carrying it. Check again: region may be assigned because of RIT timeout
|
||||
final AssignmentManager am = env.getMasterServices().getAssignmentManager();
|
||||
|
|
Loading…
Reference in New Issue