summary refs log tree commit diff
path: root/synapse/replication/tcp/__init__.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove redundant "coding: utf-8" lines (#9786)Jonathan de Jong2021-04-141-1/+0
| | | | | | | Part of #9744 Removes all redundant `# -*- coding: utf-8 -*-` lines from files, as python 3 automatically reads source code as utf-8 now. `Signed-off-by: Jonathan de Jong <jonathan@automatia.nl>`
* Fix some spelling mistakes / typos. (#7811)Patrick Cloke2020-07-091-1/+1
|
* Move client command handling out of TCP protocol (#7185)Erik Johnston2020-04-061-5/+25
| | | The aim here is to move the command handling out of the TCP protocol classes and to also merge the client and server command handling (so that we can reuse them for redis protocol). This PR simply moves the client paths to the new `ReplicationCommandHandler`, a future PR will move the server paths too.
* Fix up docsErik Johnston2017-03-311-17/+1
|
* Initial TCP protocol implementationErik Johnston2017-03-301-0/+32
| | | | This defines the low level TCP replication protocol
* Define the various streams we will replicateErik Johnston2017-03-301-0/+14