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:
parent
4c210eb212
commit
ced502801f
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue