diff options
author | Erik Johnston <erikj@matrix.org> | 2023-09-08 14:43:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-08 14:43:01 +0100 |
commit | f43d99462413b0b572da2e52037db8b1135f5ea6 (patch) | |
tree | 57884f7f2fc00e2f2b511d9e7e55b86ba745d7a5 /changelog.d | |
parent | Bump gitpython from 3.1.34 to 3.1.35 (#16279) (diff) | |
download | synapse-f43d99462413b0b572da2e52037db8b1135f5ea6.tar.xz |
Fix bug with new task scheduler using lots of CPU. (#16278)
Using the new `TaskScheduler` meant that we'ed create lots of new metrics (due to adding task ID to the desc of background process), resulting in requests for metrics taking an increasing amount of CPU.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/16278.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/16278.misc b/changelog.d/16278.misc new file mode 100644 index 0000000000..e82a470c45 --- /dev/null +++ b/changelog.d/16278.misc @@ -0,0 +1 @@ +Fix using the new task scheduler causing lots of CPU to be used. |