summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2023-11-06 08:31:22 -0500
committerGitHub <noreply@github.com>2023-11-06 08:31:22 -0500
commitcc4fe68adff0fb5660b94f92bd40978e7e292098 (patch)
treec85bb3026c4ac8b5d1ac59c963fc563233e69936 /changelog.d
parentBump setuptools-rust from 1.8.0 to 1.8.1 (#16601) (diff)
downloadsynapse-cc4fe68adff0fb5660b94f92bd40978e7e292098.tar.xz
Support reactor timing metric on more reactors. (#16532)
Previously only Twisted's EPollReactor was compatible with the
reactor timing metric, notably not working when asyncio was used.

After this change, the following configurations support the reactor
timing metric:

* poll, epoll, or select reactors
* asyncio reactor with a poll, epoll, select, /dev/poll, or kqueue event loop.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/16532.misc1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/16532.misc b/changelog.d/16532.misc
new file mode 100644
index 0000000000..437e00210b
--- /dev/null
+++ b/changelog.d/16532.misc
@@ -0,0 +1 @@
+Support reactor tick timings on more types of event loops.