Repository: ambari Updated Branches: refs/heads/trunk eb0fc28f1 -> 675590bf5
AMBARI-6351 Remove synchronous calls with commands to server, third patch. (Max Shepel via atkach) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/675590bf Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/675590bf Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/675590bf Branch: refs/heads/trunk Commit: 675590bf53931d5931de119b403691df3aa5b2b2 Parents: eb0fc28 Author: atkach <[email protected]> Authored: Wed Jul 2 16:31:23 2014 +0300 Committer: atkach <[email protected]> Committed: Wed Jul 2 16:31:23 2014 +0300 ---------------------------------------------------------------------- ambari-web/app/controllers/wizard/step8_controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/675590bf/ambari-web/app/controllers/wizard/step8_controller.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/controllers/wizard/step8_controller.js b/ambari-web/app/controllers/wizard/step8_controller.js index 53de8e4..5f438e3 100644 --- a/ambari-web/app/controllers/wizard/step8_controller.js +++ b/ambari-web/app/controllers/wizard/step8_controller.js @@ -887,7 +887,7 @@ App.WizardStep8Controller = Em.Controller.extend({ if (this.get('content.controllerName') == 'installerController' && (!App.get('testMode')) && clusterNames.length) { this.deleteClusters(clusterNames); } else { - this.deleteClustersSuccessCallback(null, null, {isLast: true}); + this.deleteClustersCallback(null, null, {isLast: true}); } },
