소스 검색

AMBARI-2635. Perf: Service summary view inefficiently binds to host components. (srimanth)

Srimanth Gunturi 12 년 전
부모
커밋
e0435fafe1
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      ambari-web/app/views/main/service/info/summary.js

+ 3 - 1
ambari-web/app/views/main/service/info/summary.js

@@ -236,7 +236,9 @@ App.MainServiceInfoSummaryView = Em.View.extend({
           components.push(obj);
         }
       });
-      this.set('components', components);
+      if(!this.get('isDestroyed') && !this.get('isDestroying')){
+        this.set('components', components);
+      }
   },
   
   _hostComponentsUpd: function() {