HBASE-3687 Bulk assign on startup should handle a ServerNotRunningException; FIX PROB. FOUND BY TED YU

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1084369 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-03-22 21:49:24 +00:00
parent c1fcc65b19
commit cf74e10e31
1 changed files with 1 additions and 0 deletions

View File

@ -933,6 +933,7 @@ public class AssignmentManager extends ZooKeeperListener {
while (!this.master.isStopped()) {
try {
this.serverManager.sendRegionOpen(destination, regions);
break;
} catch (org.apache.hadoop.hbase.ipc.ServerNotRunningException e) {
// This is the one exception to retry. For all else we should just fail
// the startup.