re-raise CancelledError

This commit is contained in:
Eric 2025-03-10 11:22:37 +11:00
parent b9dd464a93
commit 2695b46dc4
No known key found for this signature in database

View File

@ -35,6 +35,8 @@ proc raiseCodexProcessError(
template convertError(msg, body: typed) =
try:
body
except CancelledError as e:
raise e
except CatchableError as parent:
raiseCodexProcessError(msg, parent)