mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-03 02:54:52 -04:00
Disable frozen dicts by default (#3987)
This commit is contained in:
parent
0f7033fb98
commit
7232917f12
4 changed files with 18 additions and 5 deletions
|
@ -136,6 +136,8 @@ def default_config(name):
|
|||
config.rc_messages_per_second = 10000
|
||||
config.rc_message_burst_count = 10000
|
||||
|
||||
config.use_frozen_dicts = False
|
||||
|
||||
# we need a sane default_room_version, otherwise attempts to create rooms will
|
||||
# fail.
|
||||
config.default_room_version = "1"
|
||||
|
@ -182,7 +184,6 @@ def setup_test_homeserver(
|
|||
if config is None:
|
||||
config = default_config(name)
|
||||
|
||||
config.use_frozen_dicts = True
|
||||
config.ldap_enabled = False
|
||||
|
||||
if "clock" not in kargs:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue