diff options
author | Neil Johnson <neil@matrix.org> | 2018-08-08 11:46:23 +0100 |
---|---|---|
committer | Neil Johnson <neil@matrix.org> | 2018-08-08 11:46:23 +0100 |
commit | 7f3d897e7af7c5227fc27355ead082055a8c0ecf (patch) | |
tree | 2c4f3f11f08dd5f3b6e38398974a60ddef3d7f29 /tests/utils.py | |
parent | prevent total number of reserved users being too large (diff) | |
download | synapse-7f3d897e7af7c5227fc27355ead082055a8c0ecf.tar.xz |
mock config.max_mau_value
Diffstat (limited to 'tests/utils.py')
-rw-r--r-- | tests/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/utils.py b/tests/utils.py index baeed5d600..e7894819c0 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -74,6 +74,7 @@ def setup_test_homeserver(name="test", datastore=None, config=None, reactor=None config.media_storage_providers = [] config.auto_join_rooms = [] config.limit_usage_by_mau = False + config.max_mau_value = 50 config.mau_limits_reserved_threepids = [] # disable user directory updates, because they get done in the |