Repository: ambari Updated Branches: refs/heads/branch-1.6.0 14b8c9e9f -> a3b388aae
AMBARI-5813. "Database Host" property is absent for Oozie service. (jaimin) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/a3b388aa Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/a3b388aa Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/a3b388aa Branch: refs/heads/branch-1.6.0 Commit: a3b388aaede32dbf028e783dd7114a29162cb705 Parents: 14b8c9e Author: Jaimin Jetly <[email protected]> Authored: Mon May 19 12:04:18 2014 -0700 Committer: Jaimin Jetly <[email protected]> Committed: Mon May 19 12:04:30 2014 -0700 ---------------------------------------------------------------------- ambari-web/app/data/global_properties.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/a3b388aa/ambari-web/app/data/global_properties.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/data/global_properties.js b/ambari-web/app/data/global_properties.js index 00cd484..940aee1 100644 --- a/ambari-web/app/data/global_properties.js +++ b/ambari-web/app/data/global_properties.js @@ -918,7 +918,7 @@ module.exports = }, { displayName: 'Existing PostgreSQL Database', - foreignKeys: ['oozie_existing_postgresql_database', 'oozie_existing_postgresql_host'], + foreignKeys: ['oozie_existing_postgresql_database', 'oozie_existing_postgresql_host'] }, { displayName: 'Existing Oracle Database', @@ -968,7 +968,7 @@ module.exports = }, { "id": "puppet var", - "name": "oozie_existing_postgres_host", + "name": "oozie_existing_postgresql_host", "displayName": "Database Host", "description": "Specify the host on which the existing database is hosted", "defaultValue": "", @@ -976,7 +976,7 @@ module.exports = "isOverridable": false, "displayType": "host", "isRequiredByAgent": false, - "isVisible": false, + "isVisible": false, // This is dynamically set to true if database selected by the user is existing postgresql "isObserved": true, "serviceName": "OOZIE", "category": "Oozie Server",
