diff options
author | Dirk Klimpel <5740567+dklimpel@users.noreply.github.com> | 2023-04-14 11:24:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-14 10:24:06 +0100 |
commit | 4af0aec54dad261bcad240d8a878a1c16934e77c (patch) | |
tree | c8e023200f1f8dece987093aff64dbd80c261155 /docker | |
parent | Remove registration fallback code. (#15405) (diff) | |
download | synapse-4af0aec54dad261bcad240d8a878a1c16934e77c.tar.xz |
Load `/directory/room/{roomAlias}` endpoint on workers (#15333)
* Enable `directory` * move to worker store * newsfile * disable `ClientDirectoryListServer` and `ClientAppserviceDirectoryListServer` for workers
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 2a50ee1e4b..26f92b3f1a 100755 --- a/docker/configure_workers_and_start.py +++ b/docker/configure_workers_and_start.py @@ -173,6 +173,7 @@ WORKERS_CONFIG: Dict[str, Dict[str, Any]] = { "^/_matrix/client/(api/v1|r0|v3|unstable)/search", "^/_matrix/client/(r0|v3|unstable)/user/.*/filter(/|$)", "^/_matrix/client/(r0|v3|unstable)/password_policy$", + "^/_matrix/client/(api/v1|r0|v3|unstable)/directory/room/.*$", ], "shared_extra_conf": {}, "worker_extra_conf": "", |