Updated Branches: refs/heads/branch-1.2.5 222748c1c -> 09b529445
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/edd3ff14 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ambari/tree/edd3ff14 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ambari/diff/edd3ff14 Branch: refs/heads/branch-1.2.5 Commit: edd3ff14910b31948ec1603b0ad8952543bcbd33 Parents: 222748c Author: Srimanth Gunturi <[email protected]> Authored: Thu Jul 11 17:19:37 2013 -0700 Committer: Srimanth Gunturi <[email protected]> Committed: Fri Jul 12 16:15:07 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/edd3ff14/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 */
