You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@kylin.apache.org by "Zhixiong Chen (JIRA)" <ji...@apache.org> on 2017/12/11 02:24:00 UTC

[jira] [Issue Comment Deleted] (KYLIN-2939) Get config properties not correct in UI

     [ https://issues.apache.org/jira/browse/KYLIN-2939?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Zhixiong Chen updated KYLIN-2939:
---------------------------------
    Comment: was deleted

(was: I think the code is right.)

> Get config properties not correct in UI
> ---------------------------------------
>
>                 Key: KYLIN-2939
>                 URL: https://issues.apache.org/jira/browse/KYLIN-2939
>             Project: Kylin
>          Issue Type: Bug
>          Components: Web 
>            Reporter: Pan, Julian
>            Assignee: Pan, Julian
>            Priority: Critical
>         Attachments: KYLIN_2939.patch
>
>
> When I want to get kylin.env by getDeployEnv(), it will return kylin.env.hdfs-working-dir value. There is a bug in getProperty in kylinProperties.js.
> This function will return first properties will contains this name.
> Here is the fix:
> this.getProperty = function (name) {
>     var keyIndex = _config.indexOf('\n' + name + '=');
>     var keyLength = name.length;
>     var partialResult = _config.substr(keyIndex);
>     var preValueIndex = partialResult.indexOf("=");
>     var sufValueIndex = partialResult.indexOf("\n", 2);
>     return partialResult.substring(preValueIndex + 1, sufValueIndex);
>   }
> If necessary, I can create a patch for it.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)