diff options
author | Nick Mills-Barrett <nick@beeper.com> | 2022-05-25 10:51:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-25 09:51:07 +0000 |
commit | 1f9013ce60ac7c2b75ea1bfacb9314239e4e0cff (patch) | |
tree | 0bf5b5c3193e895c23c44c90c0e146ea65c61a52 /docker | |
parent | Don't create empty AS txns when the AS is down (#12869) (diff) | |
download | synapse-1f9013ce60ac7c2b75ea1bfacb9314239e4e0cff.tar.xz |
Add the `batch_send` endpoint to generic workers (#12868)
Diffstat (limited to 'docker')
-rwxr-xr-x | docker/configure_workers_and_start.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docker/configure_workers_and_start.py b/docker/configure_workers_and_start.py index b6ad141173..f7dac90222 100755 --- a/docker/configure_workers_and_start.py +++ b/docker/configure_workers_and_start.py @@ -158,6 +158,7 @@ WORKERS_CONFIG: Dict[str, Dict[str, Any]] = { "^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/(join|invite|leave|ban|unban|kick)$", "^/_matrix/client/(api/v1|r0|v3|unstable)/join/", "^/_matrix/client/(api/v1|r0|v3|unstable)/profile/", + "^/_matrix/client/(v1|unstable/org.matrix.msc2716)/rooms/.*/batch_send", ], "shared_extra_conf": {}, "worker_extra_conf": "", |