You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ab...@apache.org on 2015/09/22 16:07:43 UTC

ambari git commit: AMBARI-13185 Oozie DB hostname is not set for SQLA. (ababiichuk)

Repository: ambari
Updated Branches:
  refs/heads/branch-2.1.2 6d4682f2e -> 5a1eca9db


AMBARI-13185 Oozie DB hostname is not set for SQLA. (ababiichuk)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/5a1eca9d
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/5a1eca9d
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/5a1eca9d

Branch: refs/heads/branch-2.1.2
Commit: 5a1eca9db3907f57919fb8d1c0df6e44d246ad08
Parents: 6d4682f
Author: aBabiichuk <ab...@cybervisiontech.com>
Authored: Mon Sep 14 11:40:26 2015 +0300
Committer: aBabiichuk <ab...@cybervisiontech.com>
Committed: Tue Sep 22 17:04:39 2015 +0300

----------------------------------------------------------------------
 ambari-web/app/utils/configs/config_property_helper.js | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/5a1eca9d/ambari-web/app/utils/configs/config_property_helper.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/utils/configs/config_property_helper.js b/ambari-web/app/utils/configs/config_property_helper.js
index c2d978f..8e85a95 100644
--- a/ambari-web/app/utils/configs/config_property_helper.js
+++ b/ambari-web/app/utils/configs/config_property_helper.js
@@ -141,6 +141,8 @@ module.exports = {
         break;
       case 'hive_hostname':
         configProperty.set('recommendedValue', masterComponentHostsInDB.findProperty('component', 'HIVE_SERVER').hostName);
+        configProperty.set('value', masterComponentHostsInDB.findProperty('component', 'HIVE_SERVER').hostName);
+        break;
       case 'hive_ambari_host':
         configProperty.set('value', masterComponentHostsInDB.findProperty('component', 'HIVE_SERVER').hostName);
         break;
@@ -163,6 +165,8 @@ module.exports = {
         break;
       case 'oozie_hostname':
         configProperty.set('recommendedValue', masterComponentHostsInDB.filterProperty('component', 'OOZIE_SERVER').mapProperty('hostName')[0]);
+        configProperty.set('value', masterComponentHostsInDB.filterProperty('component', 'OOZIE_SERVER').mapProperty('hostName')[0]);
+        break;
       case 'oozieserver_host':
         configProperty.set('value', masterComponentHostsInDB.filterProperty('component', 'OOZIE_SERVER').mapProperty('hostName'));
         break;