diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2021-08-26 21:41:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-26 21:41:44 +0100 |
commit | 1800aabfc226938036479d2ab1a750aa34cf3974 (patch) | |
tree | 94c97b493de19e48e111a9b06bcf8e0a6d99c2e9 /tests/replication | |
parent | Make `backfill` and `get_missing_events` use the same codepath (#10645) (diff) | |
download | synapse-1800aabfc226938036479d2ab1a750aa34cf3974.tar.xz |
Split `FederationHandler` in half (#10692)
The idea here is to take anything to do with incoming events and move it out to a separate handler, as a way of making FederationHandler smaller.
Diffstat (limited to 'tests/replication')
-rw-r--r-- | tests/replication/test_federation_sender_shard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/replication/test_federation_sender_shard.py b/tests/replication/test_federation_sender_shard.py index af5dfca752..92a5b53e11 100644 --- a/tests/replication/test_federation_sender_shard.py +++ b/tests/replication/test_federation_sender_shard.py @@ -205,7 +205,7 @@ class FederationSenderTestCase(BaseMultiWorkerStreamTestCase): def create_room_with_remote_server(self, user, token, remote_server="other_server"): room = self.helper.create_room_as(user, tok=token) store = self.hs.get_datastore() - federation = self.hs.get_federation_handler() + federation = self.hs.get_federation_event_handler() prev_event_ids = self.get_success(store.get_latest_event_ids_in_room(room)) room_version = self.get_success(store.get_room_version(room)) |