Skip to content

Commit 091932a

Browse files
author
Bhargav Dodla
committed
fix: fixed warning message
Signed-off-by: Bhargav Dodla <bdodla@expediagroup.com>
1 parent c0f3da1 commit 091932a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/python/feast/feature_view.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ def from_proto(cls, feature_view_proto: FeatureViewProto):
423423

424424
if len(feature_view.entities) != len(feature_view.entity_columns):
425425
warnings.warn(
426-
f"There are some mismatches in your feature view's registered entities. Please check if you have applied your entities correctly."
426+
f"There are some mismatches in your feature view: {feature_view.name} registered entities. Please check if you have applied your entities correctly."
427427
f"Entities: {feature_view.entities} vs Entity Columns: {feature_view.entity_columns}"
428428
)
429429

0 commit comments

Comments
 (0)