summary refs log tree commit diff
path: root/changelog.d/13089.misc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix logging context misuse when we fail to persist a federation event (#13089)Sean Quah2022-06-171-0/+1
When we fail to persist a federation event, we kick off a task to remove its push actions in the background, using the current logging context. Since we don't `await` that task, we may finish our logging context before the task finishes. There's no reason to not `await` the task, so let's do that. Signed-off-by: Sean Quah <seanq@matrix.org>