-
- Downloads
Gracefully handle errors from callbacks.
In https://github.com/grpc/grpc/issues/19910, it was pointed out that raising an exception from a Future callback would cause the channel spin thread to terminate. If there are outstanding events on the channel, this will cause calls to Channel.close() to block indefinitely. This commit ensures that the channel spin thread does not die. Instead, exceptions will be logged at ERROR level.
Showing
- src/python/grpcio/grpc/__init__.py 3 additions, 0 deletionssrc/python/grpcio/grpc/__init__.py
- src/python/grpcio/grpc/_channel.py 9 additions, 2 deletionssrc/python/grpcio/grpc/_channel.py
- src/python/grpcio_tests/tests/unit/_channel_close_test.py 59 additions, 8 deletionssrc/python/grpcio_tests/tests/unit/_channel_close_test.py
Loading
Please register or sign in to comment