Skip to content

Commit ca71261

Browse files
tests: System/compatibility tests for testing shim compatiblity (#1218)
Additional system tests for testing shim compatibility with the classic client interface. Also fixes a bug where encountering a retriable error after another retriable error mid-stream raised an exception instead of retrying. Fixes #1156 --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 263332a commit ca71261

File tree

2 files changed

+841
-4
lines changed

2 files changed

+841
-4
lines changed

google/cloud/bigtable/row_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ def _on_error(self, exc):
227227
retry_request = self._create_retry_request()
228228

229229
self._row_merger = _RowMerger(self._row_merger.last_seen_row_key)
230-
self.response_iterator = self.read_method(retry_request)
230+
self.response_iterator = self.read_method(retry_request, retry=self.retry)
231231

232232
def _read_next(self):
233233
"""Helper for :meth:`__iter__`."""

0 commit comments

Comments
 (0)