summary refs log tree commit diff
path: root/synapse/replication/tcp/commands.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2019-03-05 14:41:13 +0000
committerErik Johnston <erik@matrix.org>2019-03-05 14:41:13 +0000
commitdc510e0e43ea1c8401f2ed0bfcd1af34c88c9a8b (patch)
treea8a1f183cc788061f1078c209b5f85f741e646df /synapse/replication/tcp/commands.py
parentRemove #4733 debug (#4767) (diff)
parentAdd rate-limiting on registration (#4735) (diff)
downloadsynapse-dc510e0e43ea1c8401f2ed0bfcd1af34c88c9a8b.tar.xz
Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes
Diffstat (limited to 'synapse/replication/tcp/commands.py')
-rw-r--r--synapse/replication/tcp/commands.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/synapse/replication/tcp/commands.py b/synapse/replication/tcp/commands.py

index 327556f6a1..2098c32a77 100644 --- a/synapse/replication/tcp/commands.py +++ b/synapse/replication/tcp/commands.py
@@ -127,8 +127,11 @@ class RdataCommand(Command): class PositionCommand(Command): - """Sent by the client to tell the client the stream postition without + """Sent by the server to tell the client the stream postition without needing to send an RDATA. + + Sent to the client after all missing updates for a stream have been sent + to the client and they're now up to date. """ NAME = "POSITION"