Repository: ambari Updated Branches: refs/heads/trunk a65ae123b -> d8ebf2d67
AMBARI-6782. Wizard: Adding Master component does not create and install the master host component. (jaimin) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/d8ebf2d6 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/d8ebf2d6 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/d8ebf2d6 Branch: refs/heads/trunk Commit: d8ebf2d67b8856eaebf6dd04bd5232528c79d861 Parents: a65ae12 Author: Jaimin Jetly <[email protected]> Authored: Thu Aug 7 15:23:18 2014 -0700 Committer: Jaimin Jetly <[email protected]> Committed: Thu Aug 7 15:23:18 2014 -0700 ---------------------------------------------------------------------- ambari-web/app/controllers/wizard/step5_controller.js | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/d8ebf2d6/ambari-web/app/controllers/wizard/step5_controller.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/controllers/wizard/step5_controller.js b/ambari-web/app/controllers/wizard/step5_controller.js index 1f42717..c44835b 100644 --- a/ambari-web/app/controllers/wizard/step5_controller.js +++ b/ambari-web/app/controllers/wizard/step5_controller.js @@ -777,6 +777,7 @@ App.WizardStep5Controller = Em.Controller.extend({ newMaster.set("display_name", lastMaster.get("display_name")); newMaster.set("component_name", lastMaster.get("component_name")); newMaster.set("selectedHost", lastMaster.get("selectedHost")); + newMaster.set("serviceId", lastMaster.get("serviceId")); newMaster.set("isInstalled", false); if (currentMasters.get("length") === (maxNumMasters - 1)) {
