diff options
author | Erik Johnston <erik@matrix.org> | 2022-06-15 17:55:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-15 16:55:20 +0000 |
commit | c95b04bb0e719d3f5de1714b442f95a39c6e3634 (patch) | |
tree | 96d0f230fc570ff5e61af1e7ce920562c4ca0aae /tests/utils.py | |
parent | Replace pyjwt with authlib in `org.matrix.login.jwt` (#13011) (diff) | |
download | synapse-c95b04bb0e719d3f5de1714b442f95a39c6e3634.tar.xz |
Change default `sync_response_cache_duration` (#13042)
Diffstat (limited to '')
-rw-r--r-- | tests/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils.py b/tests/utils.py index 3059c453d5..cabb2c0dec 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -169,7 +169,7 @@ def default_config(name, parse=False): # disable user directory updates, because they get done in the # background, which upsets the test runner. "update_user_directory": False, - "caches": {"global_factor": 1}, + "caches": {"global_factor": 1, "sync_response_cache_duration": 0}, "listeners": [{"port": 0, "type": "http"}], } |