HBASE-20029 @Ignore TestQuotaThrottle and TestReplicasClient#testCancelOfMultiGet

This commit is contained in:
Michael Stack 2018-02-20 12:08:35 -08:00
parent 51cea3e2c3
commit 148356a7bf
2 changed files with 4 additions and 0 deletions

View File

@ -61,6 +61,7 @@ import org.junit.Assert;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.ClassRule;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.slf4j.Logger;
@ -616,6 +617,7 @@ public class TestReplicasClient {
}
}
@Ignore // Disabled because it is flakey. Fails 17% on constrained GCE. %3 on Apache.
@Test
public void testCancelOfMultiGet() throws Exception {
openRegion(hriSecondary);

View File

@ -41,11 +41,13 @@ import org.junit.After;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.ClassRule;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@Ignore // Disabled because flakey. Fails ~30% on a resource constrained GCE though not on Apache.
@Category({RegionServerTests.class, MediumTests.class})
public class TestQuotaThrottle {