mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-04 17:55:06 -04:00
Include bundled aggregations in the sync response cache. (#11659)
This commit is contained in:
parent
20c6d85c6e
commit
0c40c619aa
4 changed files with 19 additions and 19 deletions
|
@ -554,20 +554,9 @@ class SyncRestServlet(RestServlet):
|
|||
)
|
||||
|
||||
serialized_state = serialize(state_events)
|
||||
# Don't bother to bundle aggregations if the timeline is unlimited,
|
||||
# as clients will have all the necessary information.
|
||||
# bundle_aggregations=room.timeline.limited,
|
||||
#
|
||||
# richvdh 2021-12-15: disable this temporarily as it has too high an
|
||||
# overhead for initialsyncs. We need to figure out a way that the
|
||||
# bundling can be done *before* the events are stored in the
|
||||
# SyncResponseCache so that this part can be synchronous.
|
||||
#
|
||||
# Ensure to re-enable the test at tests/rest/client/test_relations.py::RelationsTestCase.test_bundled_aggregations.
|
||||
# if room.timeline.limited:
|
||||
# aggregations = await self.store.get_bundled_aggregations(timeline_events)
|
||||
aggregations = None
|
||||
serialized_timeline = serialize(timeline_events, aggregations)
|
||||
serialized_timeline = serialize(
|
||||
timeline_events, room.timeline.bundled_aggregations
|
||||
)
|
||||
|
||||
account_data = room.account_data
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue