You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by nj...@apache.org on 2019/01/28 04:06:35 UTC

[kylin] branch master updated: KYLIN-2725 fix cube desc signature issue

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

nju_yaho 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 7437af8  KYLIN-2725 fix cube desc signature issue
7437af8 is described below

commit 7437af838c5fe1fc9eb2055cc5e9f81e5dc4aab5
Author: kyotoYaho <nj...@apache.org>
AuthorDate: Mon Jan 28 12:06:09 2019 +0800

    KYLIN-2725 fix cube desc signature issue
---
 .../java/org/apache/kylin/tool/metrics/systemcube/CubeDescCreator.java   | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tool/src/main/java/org/apache/kylin/tool/metrics/systemcube/CubeDescCreator.java b/tool/src/main/java/org/apache/kylin/tool/metrics/systemcube/CubeDescCreator.java
index 9eb5ab2..f525e44 100644
--- a/tool/src/main/java/org/apache/kylin/tool/metrics/systemcube/CubeDescCreator.java
+++ b/tool/src/main/java/org/apache/kylin/tool/metrics/systemcube/CubeDescCreator.java
@@ -455,7 +455,6 @@ public class CubeDescCreator {
         desc.setStorageType(storageType);
         desc.setAggregationGroups(Lists.newArrayList(aggGroup));
         desc.getOverrideKylinProps().putAll(overrideProperties);
-        desc.setSignature(desc.calculateSignature());
         desc.updateRandomUuid();
         return desc;
     }