summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2021-11-10 14:16:06 +0000
committerGitHub <noreply@github.com>2021-11-10 14:16:06 +0000
commit73cbb284b932c8b769e8a42ccda0f239a0fb1a71 (patch)
treeefa65ca13f1c63892e5932f062db933572cfe088 /synapse
parentMerge tag 'v1.47.0rc2' into develop (diff)
downloadsynapse-73cbb284b932c8b769e8a42ccda0f239a0fb1a71.tar.xz
Remove redundant parameters on `_check_event_auth` (#11292)
as of #11012, these parameters are unused.
Diffstat (limited to 'synapse')
-rw-r--r--synapse/handlers/federation_event.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/synapse/handlers/federation_event.py b/synapse/handlers/federation_event.py

index 1a1cd93b1a..9917613298 100644 --- a/synapse/handlers/federation_event.py +++ b/synapse/handlers/federation_event.py
@@ -981,8 +981,6 @@ class FederationEventHandler: origin, event, context, - state=state, - backfilled=backfilled, ) except AuthError as e: # FIXME richvdh 2021/10/07 I don't think this is reachable. Let's log it @@ -1332,8 +1330,6 @@ class FederationEventHandler: origin: str, event: EventBase, context: EventContext, - state: Optional[Iterable[EventBase]] = None, - backfilled: bool = False, ) -> EventContext: """ Checks whether an event should be rejected (for failing auth checks). @@ -1344,12 +1340,6 @@ class FederationEventHandler: context: The event context. - state: - The state events used to check the event for soft-fail. If this is - not provided the current state events will be used. - - backfilled: True if the event was backfilled. - Returns: The updated context object.