You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by an...@apache.org on 2016/06/16 21:10:09 UTC

hbase git commit: HBASE-16047 TestFastFail is broken again

Repository: hbase
Updated Branches:
  refs/heads/master 6d02f36ac -> 62a4a2c02


HBASE-16047 TestFastFail is broken again


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

Branch: refs/heads/master
Commit: 62a4a2c02985fd7a091c441f10eacc10e29d0395
Parents: 6d02f36
Author: Mikhail Antonov <an...@apache.org>
Authored: Thu Jun 16 14:05:56 2016 -0700
Committer: Mikhail Antonov <an...@apache.org>
Committed: Thu Jun 16 14:09:48 2016 -0700

----------------------------------------------------------------------
 .../test/java/org/apache/hadoop/hbase/client/TestFastFail.java    | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/62a4a2c0/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestFastFail.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestFastFail.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestFastFail.java
index 07f1948..89b28fb 100644
--- a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestFastFail.java
+++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestFastFail.java
@@ -71,6 +71,9 @@ public class TestFastFail {
    */
   @BeforeClass
   public static void setUpBeforeClass() throws Exception {
+    // Just to prevent fastpath FIFO from picking calls up bypassing the queue.
+    TEST_UTIL.getConfiguration().set(
+      SimpleRpcScheduler.CALL_QUEUE_TYPE_CONF_KEY, "deadline");
     TEST_UTIL.startMiniCluster(SLAVES);
   }