Repository: ambari Updated Branches: refs/heads/branch-2.1 975b23d2b -> ddb7305cf
AMBARI-12174 Unable to proceed from step 9 of installer. (alexantonenko) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/ddb7305c Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/ddb7305c Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/ddb7305c Branch: refs/heads/branch-2.1 Commit: ddb7305cf56292af72e6fb365eaa1dd5bd578576 Parents: 975b23d Author: Alex Antonenko <[email protected]> Authored: Fri Jun 26 20:59:52 2015 +0300 Committer: Alex Antonenko <[email protected]> Committed: Fri Jun 26 21:00:01 2015 +0300 ---------------------------------------------------------------------- ambari-web/app/controllers/wizard/step9_controller.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/ddb7305c/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 a6a49f0..0e695b9 100644 --- a/ambari-web/app/controllers/wizard/step9_controller.js +++ b/ambari-web/app/controllers/wizard/step9_controller.js @@ -769,9 +769,8 @@ App.WizardStep9Controller = Em.Controller.extend(App.ReloadPopupMixin, { */ setFinishState: function (polledData) { if (this.get('content.cluster.status') === 'INSTALLED') { - var self = this; - Em.run.next(function(){ - self.changeParseHostInfo(this.isServicesStarted(polledData)); + Em.run.next(this, function(){ + this.changeParseHostInfo(this.isServicesStarted(polledData)); }); return; } else if (this.get('content.cluster.status') === 'PENDING') { @@ -787,7 +786,7 @@ App.WizardStep9Controller = Em.Controller.extend(App.ReloadPopupMixin, { }, /** - * @param polledData Josn data retrieved from API + * @param polledData JSON data retrieved from API * @returns {bool} Has "Start All Services" request completed successfully * @method isServicesStarted */
