소스 검색

AMBARI-12167. Progress bar remains blue on deploy finish (alexantonenko)

Alex Antonenko 10 년 전
부모
커밋
95f8a0a06c
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      ambari-web/app/controllers/wizard/step9_controller.js

+ 4 - 1
ambari-web/app/controllers/wizard/step9_controller.js

@@ -769,7 +769,10 @@ App.WizardStep9Controller = Em.Controller.extend(App.ReloadPopupMixin, {
    */
   setFinishState: function (polledData) {
     if (this.get('content.cluster.status') === 'INSTALLED') {
-      this.changeParseHostInfo(this.isServicesStarted(polledData));
+      var self = this;
+      Em.run.next(function(){
+        self.changeParseHostInfo(this.isServicesStarted(polledData));
+      });
       return;
     } else if (this.get('content.cluster.status') === 'PENDING') {
       this.setIsServicesInstalled(polledData);