diff options
author | Erik Johnston <erik@matrix.org> | 2018-08-01 13:39:14 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-08-01 13:39:14 +0100 |
commit | a6d7b749150d1673117f19c6a134ade8b8c2071b (patch) | |
tree | be503e18dd30069374f33541cd7509732e2548cf /synapse/handlers | |
parent | _persist_auth_tree no longer returns anything (diff) | |
download | synapse-a6d7b749150d1673117f19c6a134ade8b8c2071b.tar.xz |
update docs
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/federation.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/synapse/handlers/federation.py b/synapse/handlers/federation.py index 2e3cbe2aab..21e1c48eef 100644 --- a/synapse/handlers/federation.py +++ b/synapse/handlers/federation.py @@ -1438,6 +1438,8 @@ class FederationHandler(BaseHandler): should not depend on one another, e.g. this should be used to persist a bunch of outliers, but not a chunk of individual events that depend on each other for state calculations. + + Notifies about the events where appropriate. """ contexts = yield logcontext.make_deferred_yieldable(defer.gatherResults( [ @@ -1464,7 +1466,8 @@ class FederationHandler(BaseHandler): def _persist_auth_tree(self, origin, auth_events, state, event): """Checks the auth chain is valid (and passes auth checks) for the state and event. Then persists the auth chain and state atomically. - Persists the event seperately. + Persists the event separately. Notifies about the persisted events + where appropriate. Will attempt to fetch missing auth events. @@ -1475,8 +1478,7 @@ class FederationHandler(BaseHandler): event (Event) Returns: - 2-tuple of (event_stream_id, max_stream_id) from the persist_event - call for `event` + Deferred """ events_to_context = {} for e in itertools.chain(auth_events, state): |