HBASE-19911 Convert some tests from small to medium because they are timing out: TestNettyRpcServer, TestClientClusterStatus; ADDENDUM2 Up timeout for smalltests from 30 seconds to 60 seconds -- a pause on jenkins can mess up smalltests

This commit is contained in:
Michael Stack 2018-02-01 08:24:54 -08:00
parent 4c210eb212
commit ced502801f
1 changed files with 3 additions and 1 deletions

View File

@ -63,7 +63,9 @@ public final class HBaseClassTestRule implements TestRule {
for (Class<?> c : categories[0].value()) {
if (c == SmallTests.class) {
// See SmallTests. Supposed to run 15 seconds.
return 30;
// Lots of these timeout on Jenkins... a stall of ten or twenty seconds mess up what looks
// fine when run local.
return 60;
} else if (c == MediumTests.class) {
// See MediumTests. Supposed to run 50 seconds.
return 180;