HBASE-13741 Disable TestRegionObserverInterface#testRecovery and testLegacyRecovery (Stephen Jiang)
This commit is contained in:
parent
a9e2f4cf31
commit
774bb5677e
|
@ -79,6 +79,7 @@ import org.apache.hadoop.hbase.util.JVMClusterUtil;
|
|||
import org.apache.hadoop.hbase.util.Threads;
|
||||
import org.junit.AfterClass;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.junit.experimental.categories.Category;
|
||||
|
||||
|
@ -588,6 +589,7 @@ public class TestRegionObserverInterface {
|
|||
}
|
||||
}
|
||||
|
||||
@Ignore // TODO: HBASE-13391 to fix flaky test
|
||||
@Test (timeout=300000)
|
||||
public void testRecovery() throws Exception {
|
||||
LOG.info(TestRegionObserverInterface.class.getName() +".testRecovery");
|
||||
|
@ -638,6 +640,7 @@ public class TestRegionObserverInterface {
|
|||
}
|
||||
}
|
||||
|
||||
@Ignore // TODO: HBASE-13391 to fix flaky test
|
||||
@Test (timeout=300000)
|
||||
public void testLegacyRecovery() throws Exception {
|
||||
LOG.info(TestRegionObserverInterface.class.getName() +".testLegacyRecovery");
|
||||
|
|
Loading…
Reference in New Issue