summary refs log tree commit diff
path: root/changelog.d/12180.misc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add `delay_cancellation` utility function (#12180)Sean Quah2022-03-141-0/+1
`delay_cancellation` behaves like `stop_cancellation`, except it delays `CancelledError`s until the original `Deferred` resolves. This is handy for unifying cleanup paths and ensuring that uncancelled coroutines don't use finished logcontexts. Signed-off-by: Sean Quah <seanq@element.io>