diff options
author | realtyem <realtyem@gmail.com> | 2023-02-01 17:42:45 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-01 23:42:45 +0000 |
commit | 58214dbb9b8a85c0dafc65162e9c20ee1885ce4e (patch) | |
tree | 2d01f3bc23df0883722b8a690007bf59b37c82e5 /docs/development | |
parent | Bump hiredis from 2.0.0 to 2.1.1 (#14939) (diff) | |
download | synapse-58214dbb9b8a85c0dafc65162e9c20ee1885ce4e.tar.xz |
Allow enabling the asyncio reactor in complement (#14858)
Signed-off-by: Jason Little realtyem@gmail.com
Diffstat (limited to 'docs/development')
-rw-r--r-- | docs/development/contributing_guide.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/development/contributing_guide.md b/docs/development/contributing_guide.md index 3cbfe96987..36bc884684 100644 --- a/docs/development/contributing_guide.md +++ b/docs/development/contributing_guide.md @@ -332,6 +332,7 @@ The above will run a monolithic (single-process) Synapse with SQLite as the data [here](https://github.com/matrix-org/synapse/blob/develop/docker/configure_workers_and_start.py#L54). A safe example would be `WORKER_TYPES="federation_inbound, federation_sender, synchrotron"`. See the [worker documentation](../workers.md) for additional information on workers. +- Passing `ASYNCIO_REACTOR=1` as an environment variable to use the Twisted asyncio reactor instead of the default one. To increase the log level for the tests, set `SYNAPSE_TEST_LOG_LEVEL`, e.g: ```sh |