HBASE-2955 hbase-2692 broke replication -- disabling replication tests till this issue is addressed

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@992425 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2010-09-03 19:18:39 +00:00
parent f5521ee5a7
commit 6f4e9c7117
2 changed files with 5 additions and 4 deletions

View File

@ -1289,6 +1289,10 @@ public class HConnectionManager {
HBaseRPC.stopProxy(i); HBaseRPC.stopProxy(i);
} }
} }
if (zooKeeper != null) {
zooKeeper.close();
zooKeeper = null;
}
} }
/** /**
@ -1523,10 +1527,6 @@ public class HConnectionManager {
public void abort(final String msg, Throwable t) { public void abort(final String msg, Throwable t) {
if (t != null) LOG.fatal(msg, t); if (t != null) LOG.fatal(msg, t);
else LOG.fatal(msg); else LOG.fatal(msg);
if(zooKeeper != null) {
zooKeeper.close();
zooKeeper = null;
}
} }
} }
} }

View File

@ -44,6 +44,7 @@ import org.junit.After;
import org.junit.AfterClass; import org.junit.AfterClass;
import org.junit.Before; import org.junit.Before;
import org.junit.BeforeClass; import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test; import org.junit.Test;
import java.net.URLEncoder; import java.net.URLEncoder;