Skip to content

Commit

Permalink
fix: fixed warning message
Browse files Browse the repository at this point in the history
Signed-off-by: Bhargav Dodla <bdodla@expediagroup.com>
  • Loading branch information
Bhargav Dodla committed Sep 3, 2024
1 parent c0f3da1 commit 091932a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/feast/feature_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ def from_proto(cls, feature_view_proto: FeatureViewProto):

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

Expand Down

0 comments on commit 091932a

Please sign in to comment.