summary refs log tree commit diff
path: root/synapse/http/replicationagent.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix using TLS for replication (#15746)Erik Johnston2023-06-081-1/+1
| | | Fixes #15744.
* Use a custom scheme & the worker name for replication requests. (#15578)Jason Little2023-05-231-7/+27
| | | | | | | | All the information needed is already in the `instance_map`, so use that instead of passing the hostname / IP & port manually for each replication request. This consolidates logic for future improvements of using e.g. UNIX sockets for workers.
* HTTP Replication Client (#15470)Jason Little2023-05-091-0/+150
Separate out a HTTP client for replication in preparation for also supporting using UNIX sockets. The major difference from the base class is that this does not use treq to handle HTTP requests.