diff options
author | Hugh Nimmo-Smith <hughns@users.noreply.github.com> | 2024-05-08 12:49:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-08 12:49:32 +0100 |
commit | 212f150208b4d94d597653282b64ff02680e3a28 (patch) | |
tree | 5bdb44427fafa5fc7cfe3e18f4d018ab1eb1e512 /synapse | |
parent | Merge branch 'release-v1.107' into develop (diff) | |
download | synapse-212f150208b4d94d597653282b64ff02680e3a28.tar.xz |
Add note about MSC3886 being closed (#17151)
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/rest/client/rendezvous.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/rest/client/rendezvous.py b/synapse/rest/client/rendezvous.py index 143f057651..27bf53314a 100644 --- a/synapse/rest/client/rendezvous.py +++ b/synapse/rest/client/rendezvous.py @@ -34,6 +34,9 @@ if TYPE_CHECKING: logger = logging.getLogger(__name__) +# n.b [MSC3886](https://github.com/matrix-org/matrix-spec-proposals/pull/3886) has now been closed. +# However, we want to keep this implementation around for some time. +# TODO: define an end-of-life date for this implementation. class MSC3886RendezvousServlet(RestServlet): """ This is a placeholder implementation of [MSC3886](https://github.com/matrix-org/matrix-spec-proposals/pull/3886) |