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

[kylin] branch 2.5.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.5.x
in repository https://gitbox.apache.org/repos/asf/kylin.git


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

commit db65b7b929f704c38fce01a8872f16b8c5d0d6c9
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;
     }