Repository: ambari Updated Branches: refs/heads/trunk 14739a22b -> c1a954ced
AMBARI-6386 Installer Step3 Hosts Warnings loading issue. (ababiichuk) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/c1a954ce Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/c1a954ce Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/c1a954ce Branch: refs/heads/trunk Commit: c1a954ced6b14384936d8e3cb19ed327e8dd57ea Parents: 14739a2 Author: aBabiichuk <[email protected]> Authored: Fri Jul 4 15:05:31 2014 +0300 Committer: aBabiichuk <[email protected]> Committed: Fri Jul 4 15:05:31 2014 +0300 ---------------------------------------------------------------------- ambari-web/app/controllers/wizard/step3_controller.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/c1a954ce/ambari-web/app/controllers/wizard/step3_controller.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/controllers/wizard/step3_controller.js b/ambari-web/app/controllers/wizard/step3_controller.js index 1d537c7..e03c58a 100644 --- a/ambari-web/app/controllers/wizard/step3_controller.js +++ b/ambari-web/app/controllers/wizard/step3_controller.js @@ -196,6 +196,10 @@ App.WizardStep3Controller = Em.Controller.extend({ this.set('hosts', []); this.get('bootHosts').clear(); this.get('wizardController').setDBProperty('bootStatus', false); + this.set('isHostsWarningsLoaded', false); + this.set('isJDKWarningsLoaded', false); + this.set('registrationStartedAt', null); + this.set('isLoaded', false); this.set('isSubmitDisabled', true); this.set('isRetryDisabled', true); }, @@ -206,8 +210,6 @@ App.WizardStep3Controller = Em.Controller.extend({ */ loadStep: function () { console.log("TRACE: Loading step3: Confirm Hosts"); - this.set('registrationStartedAt', null); - this.set('isLoaded', false); this.disablePreviousSteps(); this.clearStep(); App.router.get('clusterController').loadAmbariProperties();
