Browse Source

AMBARI-6351 Remove synchronous calls with commands to server, third patch. (Max Shepel via atkach)

atkach 11 years ago
parent
commit
675590bf53
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ambari-web/app/controllers/wizard/step8_controller.js

+ 1 - 1
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});
     }
   },