diff options
author | Erik Johnston <erik@matrix.org> | 2019-01-29 23:11:48 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-01-29 23:11:48 +0000 |
commit | 0b24d58e0548e2e7d274e50d7a55f570108b1228 (patch) | |
tree | b6ebd2855bfa7e7f1f5c80e8bd560b270a829968 /synapse/federation | |
parent | Newsfile (diff) | |
download | synapse-0b24d58e0548e2e7d274e50d7a55f570108b1228.tar.xz |
No vdh tests!
Diffstat (limited to 'synapse/federation')
-rw-r--r-- | synapse/federation/federation_base.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/federation/federation_base.py b/synapse/federation/federation_base.py index 5188b7f0db..a7a2ec4523 100644 --- a/synapse/federation/federation_base.py +++ b/synapse/federation/federation_base.py @@ -275,8 +275,7 @@ def _check_sigs_on_pdus(keyring, room_version, pdus): # event id's domain (normally only the case for joins/leaves), and add additional # checks. Only do this if the room version has a concept of event ID domain if room_version in ( - RoomVersions.V1, RoomVersions.V2, RoomVersions.VDH_TEST, - RoomVersions.STATE_V2_TEST, + RoomVersions.V1, RoomVersions.V2, RoomVersions.STATE_V2_TEST, ): pdus_to_check_event_id = [ p for p in pdus_to_check |