We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 524195c commit 5a347a9Copy full SHA for 5a347a9
bigframes/session/anonymous_dataset.py
@@ -162,8 +162,11 @@ def _cleanup_old_udfs(self):
162
not_found_ok=True,
163
retry=api_core_retry.Retry(timeout=0),
164
)
165
- except Exception:
166
- pass
+ except Exception as e:
+ msg = bfe.format_message(
167
+ f"Unable to clean this old UDF '{routine.reference}': {e}"
168
+ )
169
+ warnings.warn(msg, category=bfe.CleanupFailedWarning)
170
171
def close(self):
172
"""Delete tables that were created with this session's session_id."""
0 commit comments