diff options
author | H. Shay <hillerys@element.io> | 2022-10-06 17:34:34 -0700 |
---|---|---|
committer | H. Shay <hillerys@element.io> | 2022-10-06 17:34:34 -0700 |
commit | 78c0d07e0cf449a6759641bb53bd376be893f8fc (patch) | |
tree | 117cf80c7f0e300a90d448920eeb6c36c1495058 | |
parent | fix tests to reflect new reality (diff) | |
download | synapse-github/shay/more_batching.tar.xz |
bump max request body size in replication test cases to accomodate larger body size due to batched events github/shay/more_batching shay/more_batching
-rw-r--r-- | tests/replication/_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/replication/_base.py b/tests/replication/_base.py index ce53f808db..121f3d8d65 100644 --- a/tests/replication/_base.py +++ b/tests/replication/_base.py @@ -371,7 +371,7 @@ class BaseMultiWorkerStreamTestCase(unittest.HomeserverTestCase): config=worker_hs.config.server.listeners[0], resource=resource, server_version_string="1", - max_request_body_size=4096, + max_request_body_size=8192, reactor=self.reactor, ) |