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/28 12:33:34 UTC

[kylin] branch 2.6.x updated: KYLIN-2725 fix cube desc signature issue

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

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


The following commit(s) were added to refs/heads/2.6.x by this push:
     new 491d88d  KYLIN-2725 fix cube desc signature issue
491d88d is described below

commit 491d88d4cb4306eee861e552be08a90f4d68814f
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;
     }