diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2024-05-16 17:53:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-16 16:53:26 +0000 |
commit | 7cb3f8a97991d7a8765a19c5f744d517b1542a77 (patch) | |
tree | 78f1aaad49013b282770984bea58b81b1e354a54 | |
parent | Revert "Improve perf of sync device lists" (#17207) (diff) | |
download | synapse-7cb3f8a97991d7a8765a19c5f744d517b1542a77.tar.xz |
Route `/make_knock` and `/send_knock` to workers in Complement docker image (#17195)
-rw-r--r-- | changelog.d/17195.misc | 1 | ||||
-rwxr-xr-x | docker/configure_workers_and_start.py | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/changelog.d/17195.misc b/changelog.d/17195.misc new file mode 100644 index 0000000000..18b8f1464d --- /dev/null +++ b/changelog.d/17195.misc @@ -0,0 +1 @@ +Route `/make_knock` and `/send_knock` federation APIs to the federation reader worker in Complement test runs. \ No newline at end of file diff --git a/docker/configure_workers_and_start.py b/docker/configure_workers_and_start.py index 77534a4f4f..063f3727f9 100755 --- a/docker/configure_workers_and_start.py +++ b/docker/configure_workers_and_start.py @@ -211,6 +211,8 @@ WORKERS_CONFIG: Dict[str, Dict[str, Any]] = { "^/_matrix/federation/(v1|v2)/make_leave/", "^/_matrix/federation/(v1|v2)/send_join/", "^/_matrix/federation/(v1|v2)/send_leave/", + "^/_matrix/federation/v1/make_knock/", + "^/_matrix/federation/v1/send_knock/", "^/_matrix/federation/(v1|v2)/invite/", "^/_matrix/federation/(v1|v2)/query_auth/", "^/_matrix/federation/(v1|v2)/event_auth/", |