diff options
author | Jason Little <realtyem@gmail.com> | 2023-05-09 13:25:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-09 14:25:20 -0400 |
commit | d3bd03559b14272dd68499ab7cff4b190858b285 (patch) | |
tree | ae8783b4d21c8cd3fc22f31c70c3d02484cf6a1c /tests/test_state.py | |
parent | Add config option to prevent media downloads from listed domains. (#15197) (diff) | |
download | synapse-d3bd03559b14272dd68499ab7cff4b190858b285.tar.xz |
HTTP Replication Client (#15470)
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.
Diffstat (limited to 'tests/test_state.py')
-rw-r--r-- | tests/test_state.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_state.py b/tests/test_state.py index b20a26e1ff..2029d3d60a 100644 --- a/tests/test_state.py +++ b/tests/test_state.py @@ -228,6 +228,7 @@ class StateTestCase(unittest.TestCase): "get_macaroon_generator", "get_instance_name", "get_simple_http_client", + "get_replication_client", "hostname", ] ) |