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

xxyu 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 58049c1  KYLIN-4700 Wrong engine type for realtime streaming
58049c1 is described below

commit 58049c10b7ab1abb55ac1e8405f35d6ff1db1251
Author: rupengwang <wangrup...@live.cn>
AuthorDate: Fri Aug 14 20:39:21 2020 +0800

    KYLIN-4700 Wrong engine type for realtime streaming
---
 webapp/app/js/controllers/cubeAdvanceSetting.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/webapp/app/js/controllers/cubeAdvanceSetting.js 
b/webapp/app/js/controllers/cubeAdvanceSetting.js
index 1048839..e298d37 100755
--- a/webapp/app/js/controllers/cubeAdvanceSetting.js
+++ b/webapp/app/js/controllers/cubeAdvanceSetting.js
@@ -545,7 +545,7 @@ KylinApp.controller('CubeAdvanceSettingCtrl', function 
($scope, $modal,cubeConfi
   };
 
   $scope.isAvailableEngine = function(engine_type) {
-    return !($scope.cubeMetaFrame.storage_type === 3 && engine_type.value === 
4);
+    return !($scope.cubeMetaFrame.storage_type === 3 && engine_type.value !== 
2 );
   }
 
   $scope.cubeLookups = $scope.getCubeLookups();

Reply via email to