mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-02 14:36:04 -04:00
Respect use_frozen_dicts option in workers
This commit is contained in:
parent
d24197bead
commit
24772ba56e
6 changed files with 22 additions and 0 deletions
|
@ -41,6 +41,8 @@ from synapse.util.rlimit import change_resource_limit
|
|||
from synapse.util.versionstring import get_version_string
|
||||
from synapse.crypto import context_factory
|
||||
|
||||
from synapse import events
|
||||
|
||||
|
||||
from twisted.internet import reactor, defer
|
||||
from twisted.web.resource import Resource
|
||||
|
@ -165,6 +167,8 @@ def start(config_options):
|
|||
|
||||
setup_logging(config.worker_log_config, config.worker_log_file)
|
||||
|
||||
events.USE_FROZEN_DICTS = config.use_frozen_dicts
|
||||
|
||||
database_engine = create_engine(config.database_config)
|
||||
|
||||
tls_server_context_factory = context_factory.ServerContextFactory(config)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue