Updated Branches: refs/heads/trunk 9ea2792f3 -> fbc1ad0e7
AMBARI-2901. NodeManager should automatically start on hosts that have been added post-install. (xiwang via 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/fbc1ad0e Tree: http://git-wip-us.apache.org/repos/asf/incubator-ambari/tree/fbc1ad0e Diff: http://git-wip-us.apache.org/repos/asf/incubator-ambari/diff/fbc1ad0e Branch: refs/heads/trunk Commit: fbc1ad0e7601acdcbda05af7d8b7c2b2a285752a Parents: 9ea2792 Author: Yusaku Sako <[email protected]> Authored: Wed Aug 14 16:02:38 2013 -0700 Committer: Yusaku Sako <[email protected]> Committed: Wed Aug 14 16:02:53 2013 -0700 ---------------------------------------------------------------------- ambari-web/app/controllers/wizard/step9_controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ambari/blob/fbc1ad0e/ambari-web/app/controllers/wizard/step9_controller.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/controllers/wizard/step9_controller.js b/ambari-web/app/controllers/wizard/step9_controller.js index 0fea2fe..a4cecc0 100644 --- a/ambari-web/app/controllers/wizard/step9_controller.js +++ b/ambari-web/app/controllers/wizard/step9_controller.js @@ -353,7 +353,7 @@ App.WizardStep9Controller = Em.Controller.extend({ data = { "RequestInfo": { "context": Em.I18n.t("requestInfo.startHostComponents"), - "query": "HostRoles/component_name.in(GANGLIA_MONITOR,HBASE_REGIONSERVER,DATANODE,TASKTRACKER)&HostRoles/state=INSTALLED&HostRoles/host_name.in(" + hostnames.join(',') + ")" + "query": "HostRoles/component_name.in(GANGLIA_MONITOR,HBASE_REGIONSERVER,DATANODE,TASKTRACKER,NODEMANAGER)&HostRoles/state=INSTALLED&HostRoles/host_name.in(" + hostnames.join(',') + ")" }, "Body": { "HostRoles": { "state": "STARTED" }
