diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-04-07 22:00:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-07 22:00:55 +0100 |
commit | aedeedc2068cbf0eed9f4f6d8d9b7474e78c52ac (patch) | |
tree | bd3ebe258f5945f5b5eb1216b2918aa6f0e15fff /synapse/replication/tcp/handler.py | |
parent | Convert delete_url_cache_media to async/await. (#7241) (diff) | |
parent | changelog (diff) | |
download | synapse-aedeedc2068cbf0eed9f4f6d8d9b7474e78c52ac.tar.xz |
Merge pull request #7239 from matrix-org/rav/replication_cleanup
Miscellaneous cleanups to replication code
Diffstat (limited to 'synapse/replication/tcp/handler.py')
-rw-r--r-- | synapse/replication/tcp/handler.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/synapse/replication/tcp/handler.py b/synapse/replication/tcp/handler.py index dd71d1bc34..2f5a299141 100644 --- a/synapse/replication/tcp/handler.py +++ b/synapse/replication/tcp/handler.py @@ -31,7 +31,6 @@ from synapse.replication.tcp.commands import ( RemoteServerUpCommand, RemovePusherCommand, ReplicateCommand, - SyncCommand, UserIpCommand, UserSyncCommand, ) @@ -281,9 +280,6 @@ class ReplicationCommandHandler: self._streams_connected.add(cmd.stream_name) - async def on_SYNC(self, cmd: SyncCommand): - pass - async def on_REMOTE_SERVER_UP(self, cmd: RemoteServerUpCommand): """"Called when get a new REMOTE_SERVER_UP command.""" self._replication_data_handler.on_remote_server_up(cmd.data) |