Updated Branches: refs/heads/trunk 779c629ab -> 9cd2ce2b8
AMBARI-2635. Perf: Service summary view inefficiently binds to host components. (srimanth) Project: http://git-wip-us.apache.org/repos/asf/incubator-ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ambari/commit/9cd2ce2b Tree: http://git-wip-us.apache.org/repos/asf/incubator-ambari/tree/9cd2ce2b Diff: http://git-wip-us.apache.org/repos/asf/incubator-ambari/diff/9cd2ce2b Branch: refs/heads/trunk Commit: 9cd2ce2b887789cb2dab1eea3f4c7c01713e8bcf Parents: 779c629 Author: Srimanth Gunturi <[email protected]> Authored: Thu Jul 11 17:19:37 2013 -0700 Committer: Srimanth Gunturi <[email protected]> Committed: Thu Jul 11 17:19:42 2013 -0700 ---------------------------------------------------------------------- ambari-web/app/views/main/service/info/summary.js | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ambari/blob/9cd2ce2b/ambari-web/app/views/main/service/info/summary.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/views/main/service/info/summary.js b/ambari-web/app/views/main/service/info/summary.js index 89fa365..b0623fb 100644 --- a/ambari-web/app/views/main/service/info/summary.js +++ b/ambari-web/app/views/main/service/info/summary.js @@ -237,7 +237,12 @@ App.MainServiceInfoSummaryView = Em.View.extend({ } }); this.set('components', components); + }, + + _hostComponentsUpd: function() { + Ember.run.once(this, 'hostComponentsUpd'); }.observes('controller.content.rand', '[email protected]', '[email protected]'), + /** * Wrapper for displayName. used to render correct display name for mysql_server */
