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/10/14 00:46:52 UTC

hbase git commit: HBASE-21309 Increase the waiting timeout for TestProcedurePriority

Repository: hbase
Updated Branches:
  refs/heads/master 7464e2ef9 -> dde336f6e


HBASE-21309 Increase the waiting timeout for TestProcedurePriority


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

Branch: refs/heads/master
Commit: dde336f6ef41c01f255a0307e76510f2ca4c648f
Parents: 7464e2e
Author: zhangduo <zh...@apache.org>
Authored: Sat Oct 13 17:58:38 2018 +0800
Committer: zhangduo <zh...@apache.org>
Committed: Sun Oct 14 08:46:18 2018 +0800

----------------------------------------------------------------------
 .../hadoop/hbase/master/procedure/TestProcedurePriority.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/dde336f6/hbase-server/src/test/java/org/apache/hadoop/hbase/master/procedure/TestProcedurePriority.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/procedure/TestProcedurePriority.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/master/procedure/TestProcedurePriority.java
index 7386b2f..32fb173 100644
--- a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/procedure/TestProcedurePriority.java
+++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/master/procedure/TestProcedurePriority.java
@@ -160,13 +160,13 @@ public class TestProcedurePriority {
     rsWithMetaThread.join();
     FAIL = false;
     // verify that the cluster is back
-    UTIL.waitUntilNoRegionsInTransition(60000);
+    UTIL.waitUntilNoRegionsInTransition(480000);
     for (int i = 0; i < TABLE_COUNT; i++) {
       try (Table table = UTIL.getConnection().getTable(TableName.valueOf(TABLE_NAME_PREFIX + i))) {
         table.put(new Put(Bytes.toBytes(i)).addColumn(CF, CQ, Bytes.toBytes(i)));
       }
     }
-    UTIL.waitFor(30000, new ExplainingPredicate<Exception>() {
+    UTIL.waitFor(60000, new ExplainingPredicate<Exception>() {
 
       @Override
       public boolean evaluate() throws Exception {