You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zh...@apache.org on 2018/02/02 08:53:25 UTC

[18/41] hbase git commit: 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 sm

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


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/52cb9aaf
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/52cb9aaf
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/52cb9aaf

Branch: refs/heads/HBASE-19064
Commit: 52cb9aaf6e98e89b4891ad50ac6192f54229c021
Parents: 9272f40
Author: Michael Stack <st...@apache.org>
Authored: Thu Feb 1 08:24:54 2018 -0800
Committer: Michael Stack <st...@apache.org>
Committed: Thu Feb 1 08:25:44 2018 -0800

----------------------------------------------------------------------
 .../test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java    | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/52cb9aaf/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java
----------------------------------------------------------------------
diff --git a/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java b/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java
index 74bd70e..734ce3f 100644
--- a/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java
+++ b/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java
@@ -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;