diff --git a/synapse/replication/tcp/client.py b/synapse/replication/tcp/client.py index e03b08371c..65e07c301b 100644 --- a/synapse/replication/tcp/client.py +++ b/synapse/replication/tcp/client.py @@ -73,7 +73,10 @@ class ReplicationClientFactory(ReconnectingClientFactory): class ReplicationDataHandler: - """A replication data handler that calls slave data stores. + """A replication data handler handles incoming stream updates from replication. + + This instance notifies the slave data store about updates. Can be subclassed + to handle updates in additional ways. """ def __init__(self, store: BaseSlavedStore):