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
e69c1fd7a0
commit
5905415f9c
|
@ -1759,7 +1759,7 @@ public class MetaTableAccessor {
|
||||||
// master tries to assign these offline regions. This is followed by re-assignments of the
|
// master tries to assign these offline regions. This is followed by re-assignments of the
|
||||||
// daughter regions from resumed {@link SplitTableRegionProcedure}
|
// daughter regions from resumed {@link SplitTableRegionProcedure}
|
||||||
addRegionStateToPut(putA, RegionState.State.CLOSED);
|
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(putA, 1, -1, splitA.getReplicaId()); //new regions, openSeqNum = 1 is fine.
|
||||||
addSequenceNum(putB, 1, -1, splitB.getReplicaId());
|
addSequenceNum(putB, 1, -1, splitB.getReplicaId());
|
||||||
|
|
Loading…
Reference in New Issue