diff options
author | reivilibre <oliverw@matrix.org> | 2022-03-11 14:00:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-11 14:00:15 +0000 |
commit | 4a53f357379c2dc407617a3d39e6da4790dec9aa (patch) | |
tree | e73c980ce59d8c8735d36a55faf192488951fc31 /synapse/replication/tcp/handler.py | |
parent | Add an additional HTTP pusher + push rule tests. (#12188) (diff) | |
download | synapse-4a53f357379c2dc407617a3d39e6da4790dec9aa.tar.xz |
Improve code documentation for the typing stream over replication. (#12211)
Diffstat (limited to 'synapse/replication/tcp/handler.py')
-rw-r--r-- | synapse/replication/tcp/handler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/tcp/handler.py b/synapse/replication/tcp/handler.py index d51f045f22..b217c35f99 100644 --- a/synapse/replication/tcp/handler.py +++ b/synapse/replication/tcp/handler.py @@ -709,7 +709,7 @@ class ReplicationCommandHandler: self.send_command(RemoteServerUpCommand(server)) def stream_update(self, stream_name: str, token: Optional[int], data: Any) -> None: - """Called when a new update is available to stream to clients. + """Called when a new update is available to stream to Redis subscribers. We need to check if the client is interested in the stream or not """ |