diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-03-18 13:49:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-18 17:49:32 +0000 |
commit | 8fe930c215f69913fbcd96d609ec6950644e4ec4 (patch) | |
tree | f7f61edeecb7ffc496ed4839015c46c9f10951c4 /synapse/handlers/search.py | |
parent | Only fetch thread participation for events with threads. (#12228) (diff) | |
download | synapse-8fe930c215f69913fbcd96d609ec6950644e4ec4.tar.xz |
Move get_bundled_aggregations to relations handler. (#12237)
The get_bundled_aggregations code is fairly high-level and uses a lot of store methods, we move it into the handler as that seems like a better fit.
Diffstat (limited to 'synapse/handlers/search.py')
-rw-r--r-- | synapse/handlers/search.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/handlers/search.py b/synapse/handlers/search.py index aa16e417eb..30eddda65f 100644 --- a/synapse/handlers/search.py +++ b/synapse/handlers/search.py @@ -54,6 +54,7 @@ class SearchHandler: self.clock = hs.get_clock() self.hs = hs self._event_serializer = hs.get_event_client_serializer() + self._relations_handler = hs.get_relations_handler() self.storage = hs.get_storage() self.state_store = self.storage.state self.auth = hs.get_auth() @@ -354,7 +355,7 @@ class SearchHandler: aggregations = None if self._msc3666_enabled: - aggregations = await self.store.get_bundled_aggregations( + aggregations = await self._relations_handler.get_bundled_aggregations( # Generate an iterable of EventBase for all the events that will be # returned, including contextual events. itertools.chain( |