diff options
author | Erik Johnston <erik@matrix.org> | 2023-01-13 14:57:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-13 14:57:43 +0000 |
commit | 73ff493dfba63541a09eaf08587eb8bbd3330967 (patch) | |
tree | 97691d93c6e16922f85f1555577ffec2aece2142 /synapse/replication/tcp/client.py | |
parent | Update misleading documentation ` user_directory.search_all_users ` (#14818) (diff) | |
download | synapse-73ff493dfba63541a09eaf08587eb8bbd3330967.tar.xz |
Merge account data streams (#14826)
Diffstat (limited to 'synapse/replication/tcp/client.py')
-rw-r--r-- | synapse/replication/tcp/client.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/replication/tcp/client.py b/synapse/replication/tcp/client.py index b5e40da533..7263bb2796 100644 --- a/synapse/replication/tcp/client.py +++ b/synapse/replication/tcp/client.py @@ -33,7 +33,6 @@ from synapse.replication.tcp.streams import ( PushersStream, PushRulesStream, ReceiptsStream, - TagAccountDataStream, ToDeviceStream, TypingStream, UnPartialStatedEventStream, @@ -168,7 +167,7 @@ class ReplicationDataHandler: self.notifier.on_new_event( StreamKeyType.PUSH_RULES, token, users=[row.user_id for row in rows] ) - elif stream_name in (AccountDataStream.NAME, TagAccountDataStream.NAME): + elif stream_name in AccountDataStream.NAME: self.notifier.on_new_event( StreamKeyType.ACCOUNT_DATA, token, users=[row.user_id for row in rows] ) |