Two error handlings in AssignmentManager.setOfflineInZooKeeper()
----------------------------------------------------------------
Key: HBASE-3788
URL: https://issues.apache.org/jira/browse/HBASE-3788
Project: HBase
Issue Type: Bug
Components: master
Affects Versions: 0.90.2
Reporter: Ted Yu
Assignee: Ted Yu
Lars George discovered this:
{code}
boolean setOfflineInZooKeeper(final RegionState state) {
if (!state.isClosed() && !state.isOffline()) {
new RuntimeException("Unexpected state trying to OFFLINE; " + state);
this.master.abort("Unexpected state trying to OFFLINE; " + state,
new IllegalStateException());
return false;
}
{code}
Bernd Fondermann commented on the proper fix.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira