diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-06-15 08:44:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-15 08:44:54 -0400 |
commit | 7d2532be36dc116e130ad226a7462bb0e899aca4 (patch) | |
tree | ff008562381c65706509a752d383e165140536d5 /synapse/replication/tcp/commands.py | |
parent | Replace iteritems/itervalues/iterkeys with native versions. (#7692) (diff) | |
download | synapse-7d2532be36dc116e130ad226a7462bb0e899aca4.tar.xz |
Discard RDATA from already seen positions. (#7648)
Diffstat (limited to 'synapse/replication/tcp/commands.py')
-rw-r--r-- | synapse/replication/tcp/commands.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/replication/tcp/commands.py b/synapse/replication/tcp/commands.py index c04f622816..ea5937a20c 100644 --- a/synapse/replication/tcp/commands.py +++ b/synapse/replication/tcp/commands.py @@ -149,7 +149,7 @@ class RdataCommand(Command): class PositionCommand(Command): - """Sent by the server to tell the client the stream postition without + """Sent by the server to tell the client the stream position without needing to send an RDATA. Format:: @@ -188,7 +188,7 @@ class ErrorCommand(_SimpleCommand): class PingCommand(_SimpleCommand): - """Sent by either side as a keep alive. The data is arbitary (often timestamp) + """Sent by either side as a keep alive. The data is arbitrary (often timestamp) """ NAME = "PING" |