You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by sh...@apache.org on 2019/01/07 02:34:36 UTC

[kylin] branch master updated: KYLIN-3722 minor, update property name to follow naming convention

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 0e83b2d  KYLIN-3722 minor, update property name to follow naming convention
0e83b2d is described below

commit 0e83b2dbc37cebe68d14e73e68602fa3dc80f439
Author: shaofengshi <sh...@apache.org>
AuthorDate: Mon Jan 7 10:34:24 2019 +0800

    KYLIN-3722 minor, update property name to follow naming convention
---
 core-common/src/main/java/org/apache/kylin/common/KylinConfigBase.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core-common/src/main/java/org/apache/kylin/common/KylinConfigBase.java b/core-common/src/main/java/org/apache/kylin/common/KylinConfigBase.java
index 0275001..ab6d1a9 100644
--- a/core-common/src/main/java/org/apache/kylin/common/KylinConfigBase.java
+++ b/core-common/src/main/java/org/apache/kylin/common/KylinConfigBase.java
@@ -1931,6 +1931,6 @@ abstract public class KylinConfigBase implements Serializable {
     }
 
     public boolean isLimitPushDownEnabled() {
-        return Boolean.parseBoolean(getOptional("kylin.storage.limit-push-down-enable", TRUE));
+        return Boolean.parseBoolean(getOptional("kylin.storage.limit-push-down-enabled", TRUE));
     }
 }