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:43 UTC

[hbase] branch branch-2.4 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.4
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.4 by this push:
     new 7aca781  HBASE-25475 : Unset zk based wal splitting explicitly in tests (ADDENDUM) (#2891)
7aca781 is described below

commit 7aca7814d9b375abbc5e4d81d990a37081f6c898
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());