diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2022-04-21 07:42:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-21 07:42:03 +0100 |
commit | f5668f0b4a6cca659ae98d3cb3714692ba488e89 (patch) | |
tree | cc1e5e8ff7e8190aa5d55666054bb4ba929077ab /synapse/handlers/federation_event.py | |
parent | Remove leftover references to setup.py (#12514) (diff) | |
download | synapse-f5668f0b4a6cca659ae98d3cb3714692ba488e89.tar.xz |
Await un-partial-stating after a partial-state join (#12399)
When we join a room via the faster-joins mechanism, we end up with "partial state" at some points on the event DAG. Many parts of the codebase need to wait for the full state to load. So, we implement a mechanism to keep track of which events have partial state, and wait for them to be fully-populated.
Diffstat (limited to 'synapse/handlers/federation_event.py')
-rw-r--r-- | synapse/handlers/federation_event.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/handlers/federation_event.py b/synapse/handlers/federation_event.py index 32bf02818c..693b544286 100644 --- a/synapse/handlers/federation_event.py +++ b/synapse/handlers/federation_event.py @@ -515,6 +515,7 @@ class FederationEventHandler: ) return await self._store.update_state_for_partial_state_event(event, context) + self._state_store.notify_event_un_partial_stated(event.event_id) async def backfill( self, dest: str, room_id: str, limit: int, extremities: Collection[str] |