Skip to content

Commit 93b873f

Browse files
committed
no retry
1 parent 6d487f3 commit 93b873f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bigframes/session/anonymous_dataset.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,9 @@ def _cleanup_old_udfs(self):
156156
and routine._properties["routineType"] == "SCALAR_FUNCTION"
157157
):
158158
try:
159-
self.bqclient.delete_routine(routine.reference, not_found_ok=True)
159+
self.bqclient.delete_routine(
160+
routine.reference, not_found_ok=True, retry=None
161+
)
160162
except Exception as e:
161163
pass
162164

0 commit comments

Comments
 (0)