summary refs log tree commit diff
path: root/changelog.d/14947.bugfix
diff options
context:
space:
mode:
authorSean Quah <8349537+squahtx@users.noreply.github.com>2023-01-31 11:31:52 +0000
committerGitHub <noreply@github.com>2023-01-31 11:31:52 +0000
commit805b641fb6b31e677278eaf6e27875eba5c2a3d3 (patch)
tree8e3810b2a7bcd828462679a46af512f10a841487 /changelog.d/14947.bugfix
parentMake sqlite database migrations transactional again, part two (#14926) (diff)
downloadsynapse-805b641fb6b31e677278eaf6e27875eba5c2a3d3.tar.xz
Fix "Re-starting finished log context" spam when creating events (#14947)
`run_in_background` calls re-use the current logging context. When they
are not awaited, they can complete after the current logging context has
been marked as finished, which leads to log spam. Use
`run_as_background_process` instead.

Fixes one of the instances of #13090.

Signed-off-by: Sean Quah <seanq@matrix.org>
Diffstat (limited to 'changelog.d/14947.bugfix')
-rw-r--r--changelog.d/14947.bugfix1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/14947.bugfix b/changelog.d/14947.bugfix
new file mode 100644
index 0000000000..b9e768c44c
--- /dev/null
+++ b/changelog.d/14947.bugfix
@@ -0,0 +1 @@
+Fix a long-standing bug where sending messages on servers with presence enabled would spam "Re-starting finished log context" log lines.