From 1b7752123eff808a6fd4819c31820970d7e8e127 Mon Sep 17 00:00:00 2001 From: Ben Banfield-Zanin Date: Wed, 24 Mar 2021 10:48:57 +0000 Subject: [PATCH 1/2] docs: fallback/web endpoint does not appear to be mounted on workers --- docs/workers.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/workers.md b/docs/workers.md index e7bf9b8ce433..c6282165b085 100644 --- a/docs/workers.md +++ b/docs/workers.md @@ -232,7 +232,6 @@ expressions: # Registration/login requests ^/_matrix/client/(api/v1|r0|unstable)/login$ ^/_matrix/client/(r0|unstable)/register$ - ^/_matrix/client/(r0|unstable)/auth/.*/fallback/web$ # Event sending requests ^/_matrix/client/(api/v1|r0|unstable)/rooms/.*/redact @@ -276,7 +275,7 @@ using): Ensure that all SSO logins go to a single process. For multiple workers not handling the SSO endpoints properly, see -[#7530](https://github.com/matrix-org/synapse/issues/7530) and +[#7530](https://github.com/matrix-org/synapse/issues/7530) and [#9427](https://github.com/matrix-org/synapse/issues/9427). Note that a HTTP listener with `client` and `federation` resources must be From 157d719c5115d3fbba24d23ced9e74d0983cc1eb Mon Sep 17 00:00:00 2001 From: Ben Banfield-Zanin Date: Wed, 24 Mar 2021 10:58:40 +0000 Subject: [PATCH 2/2] Add changelog entry --- changelog.d/9679.doc | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/9679.doc diff --git a/changelog.d/9679.doc b/changelog.d/9679.doc new file mode 100644 index 000000000000..34f87490d6ef --- /dev/null +++ b/changelog.d/9679.doc @@ -0,0 +1 @@ +Improve worker documentation for fallback/web auth endpoints.