Repository: ambari Updated Branches: refs/heads/branch-2.1 115e0546e -> ee20c2442
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/ee20c244 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/ee20c244 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/ee20c244 Branch: refs/heads/branch-2.1 Commit: ee20c24422de85ab6c079e23cc09abd62c8a195c Parents: 115e054 Author: Oleg Nechiporenko <[email protected]> Authored: Tue Sep 15 15:12:57 2015 +0300 Committer: Oleg Nechiporenko <[email protected]> Committed: Tue Sep 15 15:12:57 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/ee20c244/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 c97a1c4..12a5f8a 100644 --- a/ambari-web/app/controllers/main/host/add_controller.js +++ b/ambari-web/app/controllers/main/host/add_controller.js @@ -392,6 +392,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');
