capnproto / pycapnp

Cap'n Proto serialization/RPC system - Python bindings
BSD 2-Clause "Simplified" License
458 stars 125 forks source link

Corner case for cancelled server methods that raise exceptions #348

Closed LasseBlaauwbroek closed 8 months ago

LasseBlaauwbroek commented 8 months ago

When a server method is cancelled, but it nonetheless raises an exception (other than CancelledError), this exception cannot be reported to the caller (because it has cancelled that call).

The only place where it can go is to the asyncio exception handler...