Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdk/python/feast/feature_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ def get_data_source(self, name: str) -> DataSource:

def delete_feature_view(self, name: str):
"""
Deletes a feature view.
Deletes a feature view of any kind (FeatureView, OnDemandFeatureView, StreamFeatureView).

Args:
name: Name of feature view.
Expand Down
4 changes: 3 additions & 1 deletion sdk/python/feast/infra/registry/base_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,9 @@ def apply_feature_view(
@abstractmethod
def delete_feature_view(self, name: str, project: str, commit: bool = True):
"""
Deletes a feature view or raises an exception if not found.
Deletes a feature view of any kind (FeatureView, OnDemandFeatureView, StreamFeatureView).
Or raises an exception if not found.


Args:
name: Name of feature view
Expand Down
Loading