HBASE-9067 Temporarily disable a few tests in TestReplicationTrackerZKImpl
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1507764 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
49a58b7de8
commit
e31e91772f
|
@ -37,6 +37,7 @@ import org.apache.hadoop.hbase.zookeeper.ZKUtil;
|
||||||
import org.apache.hadoop.hbase.zookeeper.ZooKeeperWatcher;
|
import org.apache.hadoop.hbase.zookeeper.ZooKeeperWatcher;
|
||||||
import org.junit.AfterClass;
|
import org.junit.AfterClass;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
import org.junit.Ignore;
|
||||||
|
|
||||||
import static org.junit.Assert.*;
|
import static org.junit.Assert.*;
|
||||||
|
|
||||||
|
@ -140,7 +141,7 @@ public class TestReplicationTrackerZKImpl {
|
||||||
assertEquals("hostname2.example.org:1234", rsRemovedData);
|
assertEquals("hostname2.example.org:1234", rsRemovedData);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test(timeout = 30000)
|
@Ignore ("Flakey") @Test(timeout = 30000)
|
||||||
public void testPeerRemovedEvent() throws Exception {
|
public void testPeerRemovedEvent() throws Exception {
|
||||||
rp.addPeer("5", utility.getClusterKey());
|
rp.addPeer("5", utility.getClusterKey());
|
||||||
rt.registerListener(new DummyReplicationListener());
|
rt.registerListener(new DummyReplicationListener());
|
||||||
|
@ -152,7 +153,7 @@ public class TestReplicationTrackerZKImpl {
|
||||||
assertEquals("5", peerRemovedData);
|
assertEquals("5", peerRemovedData);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test(timeout = 30000)
|
@Ignore ("Flakey") @Test(timeout = 30000)
|
||||||
public void testPeerListChangedEvent() throws Exception {
|
public void testPeerListChangedEvent() throws Exception {
|
||||||
// add a peer
|
// add a peer
|
||||||
rp.addPeer("5", utility.getClusterKey());
|
rp.addPeer("5", utility.getClusterKey());
|
||||||
|
|
Loading…
Reference in New Issue