Updated Branches: refs/heads/trunk edd114db2 -> 446f86b21
AMBARI-3456 Text of installation stage doesn't correspond to reality. (ababiichuk) Project: http://git-wip-us.apache.org/repos/asf/incubator-ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ambari/commit/446f86b2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ambari/tree/446f86b2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ambari/diff/446f86b2 Branch: refs/heads/trunk Commit: 446f86b2101b121fbe0cd6fcadc4fe24c641c04e Parents: edd114d Author: aBabiichuk <[email protected]> Authored: Fri Oct 4 20:21:14 2013 +0300 Committer: aBabiichuk <[email protected]> Committed: Fri Oct 4 20:21:14 2013 +0300 ---------------------------------------------------------------------- ambari-web/app/controllers/wizard/step9_controller.js | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ambari/blob/446f86b2/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 2bbc934..e291ef2 100644 --- a/ambari-web/app/controllers/wizard/step9_controller.js +++ b/ambari-web/app/controllers/wizard/step9_controller.js @@ -692,6 +692,9 @@ App.WizardStep9Controller = Em.Controller.extend({ this.onInProgressPerHost(actionsPerHost, _host); // current running action for a host totalProgress += self.progressPerHost(actionsPerHost, _host); } + if (_host.get('progress') == '33') { + _host.set('message', this.t('installer.step9.host.status.nothingToInstall')); + } }, this); totalProgress = Math.floor(totalProgress / this.hosts.length); this.set('progress', totalProgress.toString());
