diff options
author | Richard van der Hoff <richard@matrix.org> | 2020-01-31 14:07:31 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2020-02-05 17:25:46 +0000 |
commit | f84700fba8cd9345d7a1a025462c7f8650f27386 (patch) | |
tree | a24835b157cb1724ac1967fdbdcdd027c67ad323 /synapse/federation | |
parent | Merge pull request #6840 from matrix-org/rav/federation_client_async (diff) | |
download | synapse-f84700fba8cd9345d7a1a025462c7f8650f27386.tar.xz |
Pass room version object into `FederationClient.get_pdu`
Diffstat (limited to 'synapse/federation')
-rw-r--r-- | synapse/federation/federation_client.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/synapse/federation/federation_client.py b/synapse/federation/federation_client.py index 3a840e068b..d2d42e7009 100644 --- a/synapse/federation/federation_client.py +++ b/synapse/federation/federation_client.py @@ -230,7 +230,7 @@ class FederationClient(FederationBase): self, destinations: Iterable[str], event_id: str, - room_version: str, + room_version: RoomVersion, outlier: bool = False, timeout: Optional[int] = None, ) -> Optional[EventBase]: @@ -262,7 +262,7 @@ class FederationClient(FederationBase): pdu_attempts = self.pdu_destination_tried.setdefault(event_id, {}) - format_ver = room_version_to_event_format(room_version) + format_ver = room_version.event_format signed_pdu = None for destination in destinations: @@ -292,7 +292,9 @@ class FederationClient(FederationBase): pdu = pdu_list[0] # Check signatures are correct. - signed_pdu = await self._check_sigs_and_hash(room_version, pdu) + signed_pdu = await self._check_sigs_and_hash( + room_version.identifier, pdu + ) break |