You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by vj...@apache.org on 2020/03/01 12:31:12 UTC

[hbase] branch branch-2 updated: HBASE-23914 : Set hbase.client.retries.number for TestThriftHBaseServiceHandler (#1227)

This is an automated email from the ASF dual-hosted git repository.

vjasani pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2 by this push:
     new 1733efa  HBASE-23914 : Set hbase.client.retries.number for TestThriftHBaseServiceHandler (#1227)
1733efa is described below

commit 1733efa17182e1a1cd9cf766666b211cf26138dd
Author: Viraj Jasani <vj...@apache.org>
AuthorDate: Sun Mar 1 17:46:50 2020 +0530

    HBASE-23914 : Set hbase.client.retries.number for TestThriftHBaseServiceHandler (#1227)
    
    Signed-off-by: Jan Hentschel <ja...@apache.org>
---
 .../org/apache/hadoop/hbase/thrift2/TestThriftHBaseServiceHandler.java   | 1 +
 1 file changed, 1 insertion(+)

diff --git a/hbase-thrift/src/test/java/org/apache/hadoop/hbase/thrift2/TestThriftHBaseServiceHandler.java b/hbase-thrift/src/test/java/org/apache/hadoop/hbase/thrift2/TestThriftHBaseServiceHandler.java
index f4f0929..ac9d5fd 100644
--- a/hbase-thrift/src/test/java/org/apache/hadoop/hbase/thrift2/TestThriftHBaseServiceHandler.java
+++ b/hbase-thrift/src/test/java/org/apache/hadoop/hbase/thrift2/TestThriftHBaseServiceHandler.java
@@ -188,6 +188,7 @@ public class TestThriftHBaseServiceHandler {
 
   @BeforeClass
   public static void beforeClass() throws Exception {
+    UTIL.getConfiguration().set("hbase.client.retries.number", "3");
     UTIL.startMiniCluster();
     HTableDescriptor tableDescriptor = new HTableDescriptor(TableName.valueOf(tableAname));
     for (HColumnDescriptor family : families) {