소스 검색

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

atkach 11 년 전
부모
커밋
675590bf53
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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) {
     if (this.get('content.controllerName') == 'installerController' && (!App.get('testMode')) && clusterNames.length) {
       this.deleteClusters(clusterNames);
       this.deleteClusters(clusterNames);
     } else {
     } else {
-      this.deleteClustersSuccessCallback(null, null, {isLast: true});
+      this.deleteClustersCallback(null, null, {isLast: true});
     }
     }
   },
   },