HBASE-4400 fixed up the anonymous Abortable in createAndForceNodeToOpenedState()

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1172068 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Zhihong Yu 2011-09-17 20:52:33 +00:00
parent 034215f247
commit aa6d6c7a9e
1 changed files with 6 additions and 0 deletions

View File

@ -1578,10 +1578,16 @@ public class HBaseTestingUtility {
IOException, KeeperException, NodeExistsException {
ZooKeeperWatcher zkw = new ZooKeeperWatcher(TEST_UTIL.getConfiguration(),
"unittest", new Abortable() {
boolean aborted = false;
@Override
public void abort(String why, Throwable e) {
aborted = true;
throw new RuntimeException("Fatal ZK error, why=" + why, e);
}
@Override
public boolean isAborted() {
return aborted;
}
});
ZKAssign.createNodeOffline(zkw, region.getRegionInfo(), regionServer