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 2021/01/17 11:05:08 UTC

[hbase] branch branch-2 updated: HBASE-25475 : Unset zk based wal splitting explicitly in tests (ADDENDUM) (#2891)

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 fbc4478  HBASE-25475 : Unset zk based wal splitting explicitly in tests (ADDENDUM) (#2891)
fbc4478 is described below

commit fbc44784dba8c2cca46f20b00f258ec48a3b7fe5
Author: Anjan Das <da...@gmail.com>
AuthorDate: Sun Jan 17 16:31:07 2021 +0530

    HBASE-25475 : Unset zk based wal splitting explicitly in tests (ADDENDUM) (#2891)
    
    Signed-off-by: Viraj Jasani <vj...@apache.org>
---
 .../test/java/org/apache/hadoop/hbase/master/TestSplitWALManager.java    | 1 +
 1 file changed, 1 insertion(+)

diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestSplitWALManager.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestSplitWALManager.java
index 40adbea..e1f3188 100644
--- a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestSplitWALManager.java
+++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestSplitWALManager.java
@@ -248,6 +248,7 @@ public class TestSplitWALManager {
   @Test
   public void testSplitLogsWithDifferentWalAndRootFS() throws Exception{
     HBaseTestingUtility testUtil2 = new HBaseTestingUtility();
+    testUtil2.getConfiguration().setBoolean(HBASE_SPLIT_WAL_COORDINATED_BY_ZK, false);
     testUtil2.getConfiguration().setInt(HBASE_SPLIT_WAL_MAX_SPLITTER, 1);
     Path dir = TEST_UTIL.getDataTestDirOnTestFS("testWalDir");
     testUtil2.getConfiguration().set(CommonFSUtils.HBASE_WAL_DIR, dir.toString());