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:
Michael Stack 2012-03-23 21:18:41 +00:00
parent 26b2950bc7
commit 358dc6e6e6
1 changed files with 2 additions and 2 deletions

View File

@ -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 " +