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 7ec7832 commit c7f63bdCopy full SHA for c7f63bd
google/api_core/bidi.py
@@ -265,6 +265,9 @@ def add_done_callback(self, callback):
265
self._callbacks.append(callback)
266
267
def _on_call_done(self, future):
268
+ # Note that grpc's "future" here is also a grpc.RpcError.
269
+ # `grpc.RpcError` is also `grpc.call` based on
270
+ # https://github.com/grpc/grpc/issues/10885#issuecomment-302651331
271
for callback in self._callbacks:
272
callback(future)
273
0 commit comments