diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-12-20 14:14:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-20 14:14:38 -0500 |
commit | dd4778875213d9cb8be7ee71d32751fbd6cdaba2 (patch) | |
tree | bc638f5df3a1e60a5cb2b15b8177810c2f49d700 /synapse/handlers/events.py | |
parent | Improve opentracing support for `ResponseCache` (#11607) (diff) | |
download | synapse-dd4778875213d9cb8be7ee71d32751fbd6cdaba2.tar.xz |
Do not bundle aggregations for APIs which shouldn't include them. (#11592)
And make bundling aggregations opt-in, instead of opt-out to avoid having APIs to include extraneous data (and being much heavier than necessary).
Diffstat (limited to 'synapse/handlers/events.py')
-rw-r--r-- | synapse/handlers/events.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/handlers/events.py b/synapse/handlers/events.py index afed80ba14..1b996c420d 100644 --- a/synapse/handlers/events.py +++ b/synapse/handlers/events.py @@ -123,8 +123,6 @@ class EventStreamHandler: events, time_now, as_client_event=as_client_event, - # Don't bundle aggregations as this is a deprecated API. - bundle_aggregations=False, ) chunk = { |