mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-04 18:34:56 -04:00
Prevent bundling aggregations for state events (#9619)
There's no need to do aggregation bundling for state events. Doing so can cause performance issues.
This commit is contained in:
parent
1c8a2541da
commit
1b0eaed21f
3 changed files with 9 additions and 2 deletions
|
@ -685,7 +685,10 @@ class RoomEventContextServlet(RestServlet):
|
|||
results["events_after"], time_now
|
||||
)
|
||||
results["state"] = await self._event_serializer.serialize_events(
|
||||
results["state"], time_now
|
||||
results["state"],
|
||||
time_now,
|
||||
# No need to bundle aggregations for state events
|
||||
bundle_aggregations=False,
|
||||
)
|
||||
|
||||
return 200, results
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue