HBASE-10423 Report back the message of split or rollback failure to the master (Harsh J)

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1561745 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2014-01-27 17:00:10 +00:00
parent b50cc05367
commit c2de5398b4
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ class SplitRequest implements Runnable {
parent.getRegionNameAsString() + " -- aborting server";
// If failed rollback, kill this server to avoid having a hole in table.
LOG.info(msg, ee);
this.server.abort(msg);
this.server.abort(msg + " -- Cause: " + ee.getMessage());
}
return;
}