HBASE-19908 TestCoprocessorShortCircuitRPC Timeout....

This commit is contained in:
Michael Stack 2018-01-31 17:32:39 -08:00
parent 414b2d0889
commit bc0e9ce8f4
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ import org.apache.hadoop.hbase.SharedConnection;
import org.apache.hadoop.hbase.client.Connection; import org.apache.hadoop.hbase.client.Connection;
import org.apache.hadoop.hbase.client.ConnectionUtils; import org.apache.hadoop.hbase.client.ConnectionUtils;
import org.apache.hadoop.hbase.testclassification.CoprocessorTests; import org.apache.hadoop.hbase.testclassification.CoprocessorTests;
import org.apache.hadoop.hbase.testclassification.SmallTests; import org.apache.hadoop.hbase.testclassification.MediumTests;
import org.junit.AfterClass; import org.junit.AfterClass;
import org.junit.BeforeClass; import org.junit.BeforeClass;
import org.junit.ClassRule; import org.junit.ClassRule;
@ -41,7 +41,7 @@ import org.junit.rules.TestName;
* Ensure Coprocessors get ShortCircuit Connections when they get a Connection from their * Ensure Coprocessors get ShortCircuit Connections when they get a Connection from their
* CoprocessorEnvironment. * CoprocessorEnvironment.
*/ */
@Category({CoprocessorTests.class, SmallTests.class}) @Category({CoprocessorTests.class, MediumTests.class})
public class TestCoprocessorShortCircuitRPC { public class TestCoprocessorShortCircuitRPC {
@ClassRule @ClassRule