Repository: ambari Updated Branches: refs/heads/trunk 950f732bc -> afdfd2b09
AMBARI-13098. Button "Retry" should be blocked after click on step6 AHW (onechiporenko) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/afdfd2b0 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/afdfd2b0 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/afdfd2b0 Branch: refs/heads/trunk Commit: afdfd2b0954df4d8035e0b6a7bd062e92ae836ed Parents: 950f732 Author: Oleg Nechiporenko <[email protected]> Authored: Tue Sep 15 15:06:13 2015 +0300 Committer: Oleg Nechiporenko <[email protected]> Committed: Tue Sep 15 15:06:13 2015 +0300 ---------------------------------------------------------------------- ambari-web/app/controllers/main/host/add_controller.js | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/afdfd2b0/ambari-web/app/controllers/main/host/add_controller.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/controllers/main/host/add_controller.js b/ambari-web/app/controllers/main/host/add_controller.js index 7f02c25..7ad62af 100644 --- a/ambari-web/app/controllers/main/host/add_controller.js +++ b/ambari-web/app/controllers/main/host/add_controller.js @@ -406,6 +406,7 @@ App.AddHostController = App.WizardController.extend({ installServices: function (isRetry, callback, errorCallback) { callback = callback || Em.K; this.set('content.cluster.oldRequestsId', []); + this.set('content.cluster.status', 'PENDING'); var clusterName = this.get('content.cluster.name'); var hostNames = []; var hosts = this.getDBProperty('hosts');
