grpcio: fix `AioRpcError` self recursion (#32305)

See https://github.com/google/mobly/pull/870#issuecomment-1419629154 for
more details.
pull/32352/head
Lucas Abel 2 years ago committed by GitHub
parent b1f1fa1e64
commit d5fcbce4b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/python/grpcio/grpc/aio/_call.py

@ -86,7 +86,7 @@ class AioRpcError(grpc.RpcError):
trailing_metadata: Optional metadata that could be sent by the Server.
"""
super().__init__(self)
super().__init__()
self._code = code
self._details = details
self._initial_metadata = initial_metadata

Loading…
Cancel
Save