Skip to content

Commit ec3e8ae

Browse files
authored
Update google/cloud/bigquery/retry.py
1 parent badb82e commit ec3e8ae

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

google/cloud/bigquery/retry.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -155,11 +155,6 @@ def _job_should_retry(exc):
155155
# waiting for the query to complete.
156156
if _should_retry(exc):
157157
return True
158-
159-
# Per b/436586523, ML/AI jobs don't seem to populate the structured errors
160-
# reason. If these jobs fail, still try to retry them.
161-
if "job encountered an internal error" in str(exc):
162-
163158

164159
if not hasattr(exc, "errors") or len(exc.errors) == 0:
165160
return False

0 commit comments

Comments
 (0)