Updated Branches: refs/heads/branch-1.4 649e16639 -> a255bc830
AMBARI-2971. MapReduce2 HistoryServer failed to start with Class Not Found exception. (yusaku) Project: http://git-wip-us.apache.org/repos/asf/incubator-ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ambari/commit/a255bc83 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ambari/tree/a255bc83 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ambari/diff/a255bc83 Branch: refs/heads/branch-1.4 Commit: a255bc8305ca6dd38c47712550968b04cee4d276 Parents: 649e166 Author: Yusaku Sako <[email protected]> Authored: Tue Aug 20 23:49:23 2013 -0700 Committer: Yusaku Sako <[email protected]> Committed: Tue Aug 20 23:56:49 2013 -0700 ---------------------------------------------------------------------- ambari-web/app/controllers/wizard/step8_controller.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ambari/blob/a255bc83/ambari-web/app/controllers/wizard/step8_controller.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/controllers/wizard/step8_controller.js b/ambari-web/app/controllers/wizard/step8_controller.js index 141b1d7..5d49005 100644 --- a/ambari-web/app/controllers/wizard/step8_controller.js +++ b/ambari-web/app/controllers/wizard/step8_controller.js @@ -1147,7 +1147,7 @@ App.WizardStep8Controller = Em.Controller.extend({ var hostNames = _slave.hosts.mapProperty('hostName'); switch (_client.component_name) { case 'HDFS_CLIENT': - // install HDFS_CLIENT on HBASE_MASTER, HBASE_REGIONSERVER, and WEBHCAT_SERVER hosts + // install HDFS_CLIENT on HBASE_MASTER, HBASE_REGIONSERVER, WEBHCAT_SERVER, and HISTORYSERVER hosts masterHosts.filterProperty('component', 'HBASE_MASTER').filterProperty('isInstalled', false).forEach(function (_masterHost) { hostNames.pushObject(_masterHost.hostName); }, this); @@ -1157,6 +1157,9 @@ App.WizardStep8Controller = Em.Controller.extend({ masterHosts.filterProperty('component', 'WEBHCAT_SERVER').filterProperty('isInstalled', false).forEach(function (_masterHost) { hostNames.pushObject(_masterHost.hostName); }, this); + masterHosts.filterProperty('component', 'HISTORYSERVER').filterProperty('isInstalled', false).forEach(function (_masterHost) { + hostNames.pushObject(_masterHost.hostName); + }, this); break; case 'MAPREDUCE_CLIENT': // install MAPREDUCE_CLIENT on HIVE_SERVER, OOZIE_SERVER, NAGIOS_SERVER, and WEBHCAT_SERVER hosts
