summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorSean Quah <8349537+squahtx@users.noreply.github.com>2022-05-11 14:52:26 +0100
committerGitHub <noreply@github.com>2022-05-11 14:52:26 +0100
commit6ee61b905256f87dc2b75007ed711cd59065db9a (patch)
treecbde33f2ea43c6c7c1180e1f7085682c52fdf0d8 /changelog.d
parentReload cache factors from disk on SIGHUP (#12673) (diff)
downloadsynapse-6ee61b905256f87dc2b75007ed711cd59065db9a.tar.xz
Complain if a federation endpoint has the `@cancellable` flag (#12705)
`BaseFederationServlet` wraps its endpoints in a bunch of async code
that has not been vetted for compatibility with cancellation.
Fail CI if a `@cancellable` flag is applied to a federation endpoint.

Signed-off-by: Sean Quah <seanq@element.io>
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/12705.misc1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/12705.misc b/changelog.d/12705.misc
new file mode 100644
index 0000000000..a913d8bb85
--- /dev/null
+++ b/changelog.d/12705.misc
@@ -0,0 +1 @@
+Complain if a federation endpoint has the `@cancellable` flag, since some of the wrapper code may not handle cancellation correctly yet.