summary refs log tree commit diff
path: root/changelog.d/12568.misc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 1.59.0rc1David Robertson2022-05-101-1/+0
|
* Implement cancellation support/protection for module callbacks (#12568)Sean Quah2022-05-091-0/+1
There's no guarantee that module callbacks will handle cancellation appropriately. Protect module callbacks with read semantics from cancellation and avoid swallowing `CancelledError`s that arise. Other module callbacks, such as the `on_*` callbacks, are presumed to live on code paths that involve writes and aren't cancellation-friendly. These module callbacks have been left alone. Signed-off-by: Sean Quah <seanq@element.io>