Repository: ambari Updated Branches: refs/heads/trunk 386506ffd -> ca2031282
MBARI-11975. When there are components in INSTALL_FAILED state UI seems to be issuing wrong command to INSTALL them (alexantonenko) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/ca203128 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/ca203128 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/ca203128 Branch: refs/heads/trunk Commit: ca20312826b571743f04dccb9b5568de33ef1dd8 Parents: 386506f Author: Alex Antonenko <[email protected]> Authored: Wed Jun 17 18:48:06 2015 +0300 Committer: Alex Antonenko <[email protected]> Committed: Wed Jun 17 19:06:48 2015 +0300 ---------------------------------------------------------------------- ambari-web/app/controllers/wizard.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/ca203128/ambari-web/app/controllers/wizard.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/controllers/wizard.js b/ambari-web/app/controllers/wizard.js index 01d9ec8..d85b126 100644 --- a/ambari-web/app/controllers/wizard.js +++ b/ambari-web/app/controllers/wizard.js @@ -361,14 +361,14 @@ App.WizardController = Em.Controller.extend(App.LocalStorage, App.ThemesMappingM data = { context: Em.I18n.t('requestInfo.installComponents'), HostRoles: {"state": "INSTALLED"}, - urlParams: "HostRoles/state=INSTALLED" - } + urlParams: "HostRoles/desired_state=INSTALLED" + }; } else { data = { context: Em.I18n.t('requestInfo.installServices'), ServiceInfo: {"state": "INSTALLED"}, urlParams: "ServiceInfo/state=INIT" - } + }; } var clusterStatus = {
