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:
parent
f5521ee5a7
commit
6f4e9c7117
|
@ -1289,6 +1289,10 @@ public class HConnectionManager {
|
|||
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) {
|
||||
if (t != null) LOG.fatal(msg, t);
|
||||
else LOG.fatal(msg);
|
||||
if(zooKeeper != null) {
|
||||
zooKeeper.close();
|
||||
zooKeeper = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -44,6 +44,7 @@ import org.junit.After;
|
|||
import org.junit.AfterClass;
|
||||
import org.junit.Before;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.net.URLEncoder;
|
||||
|
|
Loading…
Reference in New Issue