mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-06 19:24:56 -04:00
Reduce the amount of state we pull from the DB (#12811)
This commit is contained in:
parent
6b46c3eb3d
commit
e3163e2e11
23 changed files with 162 additions and 147 deletions
|
@ -36,6 +36,7 @@ class ResourceLimitsServerNotices:
|
|||
def __init__(self, hs: "HomeServer"):
|
||||
self._server_notices_manager = hs.get_server_notices_manager()
|
||||
self._store = hs.get_datastores().main
|
||||
self._storage_controllers = hs.get_storage_controllers()
|
||||
self._auth = hs.get_auth()
|
||||
self._config = hs.config
|
||||
self._resouce_limited = False
|
||||
|
@ -178,8 +179,10 @@ class ResourceLimitsServerNotices:
|
|||
currently_blocked = False
|
||||
pinned_state_event = None
|
||||
try:
|
||||
pinned_state_event = await self._state.get_current_state(
|
||||
room_id, event_type=EventTypes.Pinned
|
||||
pinned_state_event = (
|
||||
await self._storage_controllers.state.get_current_state_event(
|
||||
room_id, event_type=EventTypes.Pinned, state_key=""
|
||||
)
|
||||
)
|
||||
except AuthError:
|
||||
# The user has yet to join the server notices room
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue