diff options
author | Erik Johnston <erikj@element.io> | 2024-05-29 11:14:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-29 11:14:42 +0100 |
commit | bb5a692946e69c7f3686f1cb3fc0833b736f066a (patch) | |
tree | 6fccac75d6c8b4205d5eb1129a2e17003d60aeaf /changelog.d/17239.misc | |
parent | Merge branch 'master' into develop (diff) | |
download | synapse-bb5a692946e69c7f3686f1cb3fc0833b736f066a.tar.xz |
Fix slipped logging context when media rejected (#17239)
When a module rejects a piece of media we end up trying to close the same logging context twice. Instead of fixing the existing code we refactor to use an async context manager, which is easier to write correctly.
Diffstat (limited to 'changelog.d/17239.misc')
-rw-r--r-- | changelog.d/17239.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/17239.misc b/changelog.d/17239.misc new file mode 100644 index 0000000000..9fca36bb29 --- /dev/null +++ b/changelog.d/17239.misc @@ -0,0 +1 @@ +Fix errors in logs about closing incorrect logging contexts when media gets rejected by a module. |