HBASE-9344 RegionServer not shutting down upon KeeperException in open region

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1517956 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
larsh 2013-08-27 19:53:12 +00:00
parent d8ad729333
commit d6c13b39c2
1 changed files with 3 additions and 0 deletions

View File

@ -330,6 +330,9 @@ public class OpenRegionHandler extends EventHandler {
try {
this.services.postOpenDeployTasks(this.region,
this.server.getCatalogTracker());
} catch (KeeperException e) {
server.abort("Exception running postOpenDeployTasks; region=" +
this.region.getRegionInfo().getEncodedName(), e);
} catch (Exception e) {
LOG.warn("Exception running postOpenDeployTasks; region=" +
this.region.getRegionInfo().getEncodedName(), e);