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 6557619 commit d14a0c6Copy full SHA for d14a0c6
google/api_core/bidi.py
@@ -306,6 +306,8 @@ def close(self):
306
self._request_queue.put(None)
307
self.call.cancel()
308
self._request_generator = None
309
+ self._initial_request = None
310
+ self._callbacks = []
311
# Don't set self.call to None. Keep it around so that send/recv can
312
# raise the error.
313
@@ -717,6 +719,7 @@ def stop(self):
717
719
_LOGGER.warning("Background thread did not exit.")
718
720
721
self._thread = None
722
+ self._on_response = None
723
724
@property
725
def is_active(self):
0 commit comments