diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2021-09-28 15:25:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-28 15:25:07 +0100 |
commit | 2622b28c5cbe38c60c556544aa7502a8684ee60b (patch) | |
tree | 644bd4a67652cf16da4ef6ebdf5dc36c75f447d0 /tests/test_federation.py | |
parent | Clean-up type hints in server config (#10915) (diff) | |
download | synapse-2622b28c5cbe38c60c556544aa7502a8684ee60b.tar.xz |
Inline `_check_event_auth` for outliers (#10926)
* Inline `_check_event_auth` for outliers When we are persisting an outlier, most of `_check_event_auth` is redundant: * `_update_auth_events_and_context_for_auth` does nothing, because the `input_auth_events` are (now) exactly the event's auth_events, which means that `missing_auth` is empty. * we don't care about soft-fail, kicking guest users or `send_on_behalf_of` for outliers ... so the only thing that matters is the auth itself, so let's just do that. * `_auth_and_persist_fetched_events_inner`: de-async `prep` `prep` no longer calls any `async` methods, so let's make it synchronous. * Simplify `_check_event_auth` We no longer need to support outliers here, which makes things rather simpler. * changelog * lint
Diffstat (limited to '')
-rw-r--r-- | tests/test_federation.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/test_federation.py b/tests/test_federation.py index c51e018da1..24fc77d7a7 100644 --- a/tests/test_federation.py +++ b/tests/test_federation.py @@ -82,7 +82,6 @@ class MessageAcceptTests(unittest.HomeserverTestCase): event, context, state=None, - claimed_auth_event_map=None, backfilled=False, ): return context |