Repository: ambari
Updated Branches:
  refs/heads/trunk 461747b9c -> 6fa376aea


AMBARI-5481. yarn.timeline-service.address by default should point to ATS host 
instead of 0.0.0.0. (alexantonenko)


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

Branch: refs/heads/trunk
Commit: 6fa376aeae64737865f4e6125429ade3880eb1e6
Parents: 461747b
Author: Alex Antonenko <hiv...@gmail.com>
Authored: Wed Apr 16 18:03:18 2014 +0300
Committer: Alex Antonenko <hiv...@gmail.com>
Committed: Wed Apr 16 18:03:18 2014 +0300

----------------------------------------------------------------------
 ambari-web/app/models/service_config.js | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/6fa376ae/ambari-web/app/models/service_config.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/models/service_config.js 
b/ambari-web/app/models/service_config.js
index 6002e29..6a1645d 100644
--- a/ambari-web/app/models/service_config.js
+++ b/ambari-web/app/models/service_config.js
@@ -351,6 +351,10 @@ App.ServiceConfigProperty = Ember.Object.extend({
         var hsHost = masterComponentHostsInDB.findProperty('component', 
'APP_TIMELINE_SERVER').hostName;
         this.setDefaultValue("(0.0.0.0)(?=:)", hsHost);
         break;
+      case 'yarn.timeline-service.address':
+        var hsHost = masterComponentHostsInDB.findProperty('component', 
'APP_TIMELINE_SERVER').hostName;
+        this.setDefaultValue("(0.0.0.0)(?=:)", hsHost);
+        break;
       case 'nm_hosts':
         this.set('value', 
slaveComponentHostsInDB.findProperty('componentName', 
'NODEMANAGER').hosts.mapProperty('hostName'));
         break;

Reply via email to