You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by xx...@apache.org on 2022/12/13 10:25:20 UTC

[kylin] 13/25: KYLIN-5308 Add transaction timeout when epoch renew

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

xxyu pushed a commit to branch kylin5
in repository https://gitbox.apache.org/repos/asf/kylin.git

commit 9ac00fad6c50068c3695ee4cacb39bc3d11f5bc0
Author: Jiale He <35...@users.noreply.github.com>
AuthorDate: Thu Oct 13 09:53:30 2022 +0800

    KYLIN-5308 Add transaction timeout when epoch renew
---
 .../test/java/org/apache/kylin/common/KylinConfigBaseTest.java    | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/src/core-common/src/test/java/org/apache/kylin/common/KylinConfigBaseTest.java b/src/core-common/src/test/java/org/apache/kylin/common/KylinConfigBaseTest.java
index 16f653d46b..70c90517ab 100644
--- a/src/core-common/src/test/java/org/apache/kylin/common/KylinConfigBaseTest.java
+++ b/src/core-common/src/test/java/org/apache/kylin/common/KylinConfigBaseTest.java
@@ -1372,14 +1372,6 @@ class KylinConfigBaseTest {
         config.setProperty("kylin.server.leader-race.heart-beat-timeout-rate", "1");
         Assertions.assertEquals(1.0, config.getEpochRenewTimeoutRate());
     }
-
-    @Test
-    void testGetSubstitutor() {
-        KylinConfig config = KylinConfig.getInstanceFromEnv();
-        val sub1 = config.getSubstitutor();
-        val sub2 = config.getSubstitutor();
-        Assertions.assertSame(sub1, sub2);
-    }
 }
 
 class EnvironmentUpdateUtils {