HBASE-19915 (addendum): Fixed a typo because of which only daughterA was getting stored with a CLOSED state and not daughterB
This commit is contained in:
parent
8de820786c
commit
6d04aa1794
|
@ -1759,7 +1759,7 @@ public class MetaTableAccessor {
|
|||
// master tries to assign these offline regions. This is followed by re-assignments of the
|
||||
// daughter regions from resumed {@link SplitTableRegionProcedure}
|
||||
addRegionStateToPut(putA, RegionState.State.CLOSED);
|
||||
addRegionStateToPut(putA, RegionState.State.CLOSED);
|
||||
addRegionStateToPut(putB, RegionState.State.CLOSED);
|
||||
|
||||
addSequenceNum(putA, 1, -1, splitA.getReplicaId()); //new regions, openSeqNum = 1 is fine.
|
||||
addSequenceNum(putB, 1, -1, splitB.getReplicaId());
|
||||
|
|
Loading…
Reference in New Issue