HBASE-5624 Aborting regionserver when splitting region, may cause daughter region not assigned by ServerShutdownHandler
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1304603 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
26b2950bc7
commit
358dc6e6e6
|
@ -340,9 +340,9 @@ public class SplitTransaction {
|
|||
if (stopped || stopping) {
|
||||
// add 2nd daughter first (see HBASE-4335)
|
||||
MetaEditor.addDaughter(server.getCatalogTracker(),
|
||||
b.getRegionInfo(), null);
|
||||
b.getRegionInfo(), services.getServerName());
|
||||
MetaEditor.addDaughter(server.getCatalogTracker(),
|
||||
a.getRegionInfo(), null);
|
||||
a.getRegionInfo(), services.getServerName());
|
||||
LOG.info("Not opening daughters " +
|
||||
b.getRegionInfo().getRegionNameAsString() +
|
||||
" and " +
|
||||
|
|
Loading…
Reference in New Issue