We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 827d3c1 commit 69f061bCopy full SHA for 69f061b
google/api_core/bidi_async.py
@@ -176,8 +176,9 @@ async def open(self) -> None:
176
try:
177
call = await self._start_rpc(request_generator, metadata=self._rpc_metadata)
178
except exceptions.GoogleAPICallError as exc:
179
- # The original `grpc.RpcError` (which is usually also a `grpc.Call`) is
180
- # available from the ``response`` property on the mapped exception.
+ # The original `grpc.aio.AioRpcError` (which is usually also a
+ # `grpc.aio.Call`) is available from the ``response`` property on
181
+ # the mapped exception.
182
self._on_call_done(exc.response)
183
raise
184
0 commit comments