Original issue: googleapis/python-bigquery-storage#242
A user reported that they saw an error in production when fetching table data with Client.list_rows(). That method uses the default retry object, which currently does not consider requests.exceptions.ChunkedEncodingError retryable.
(it does retry requests.exceptions.ConnectionError, but ChunkedEncodingError is not a subclass of that.
Original issue: googleapis/python-bigquery-storage#242
A user reported that they saw an error in production when fetching table data with
Client.list_rows(). That method uses the default retry object, which currently does not considerrequests.exceptions.ChunkedEncodingErrorretryable.(it does retry
requests.exceptions.ConnectionError, butChunkedEncodingErroris not a subclass of that.