Skip to content

Commit 0090843

Browse files
authored
When re-opening a ResumableBidiRPC set _request_queue_generator to None. (#7548)
1 parent a5c7ce2 commit 0090843

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

google/api_core/bidi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ def _reopen(self):
350350
self.call = None
351351
# Request generator should exit cleanly since the RPC its bound to
352352
# has exited.
353-
self.request_generator = None
353+
self._request_generator = None
354354

355355
# Note: we do not currently do any sort of backoff here. The
356356
# assumption is that re-establishing the stream under normal

0 commit comments

Comments
 (0)