Skip to content

Commit a2ccd85

Browse files
committed
Remove swallowing exception on feature group delete attempt
1 parent 12c222b commit a2ccd85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integ/test_feature_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,4 +312,4 @@ def cleanup_feature_group(feature_group: FeatureGroup):
312312
try:
313313
feature_group.delete()
314314
except Exception:
315-
pass
315+
raise RuntimeError(f"Failed to delete feature group with name {feature_group.name}")

0 commit comments

Comments
 (0)