diff options
author | Erik Johnston <erikj@element.io> | 2024-03-28 16:29:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-28 16:29:23 +0000 |
commit | fd48fc45853eb193a22a08d874eb473e668e2d6a (patch) | |
tree | 6b0ae987eb4cedd4a616463f6fabf95f543e541a /docker | |
parent | Add support for moving `/push_rules` off of main process (#17037) (diff) | |
download | synapse-fd48fc45853eb193a22a08d874eb473e668e2d6a.tar.xz |
Fixups to new push stream (#17038)
Follow on from #17037
Diffstat (limited to 'docker')
-rwxr-xr-x | docker/configure_workers_and_start.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docker/configure_workers_and_start.py b/docker/configure_workers_and_start.py index 3917d9ae7e..77534a4f4f 100755 --- a/docker/configure_workers_and_start.py +++ b/docker/configure_workers_and_start.py @@ -310,6 +310,13 @@ WORKERS_CONFIG: Dict[str, Dict[str, Any]] = { "shared_extra_conf": {}, "worker_extra_conf": "", }, + "push_rules": { + "app": "synapse.app.generic_worker", + "listener_resources": ["client", "replication"], + "endpoint_patterns": ["^/_matrix/client/(api/v1|r0|v3|unstable)/pushrules/"], + "shared_extra_conf": {}, + "worker_extra_conf": "", + }, } # Templates for sections that may be inserted multiple times in config files @@ -401,6 +408,7 @@ def add_worker_roles_to_shared_config( "receipts", "to_device", "typing", + "push_rules", ] # Worker-type specific sharding config. Now a single worker can fulfill multiple |