Skip to content

Commit

Permalink
fix: Default to pandas mode if not specified in ODFV proto in database (
Browse files Browse the repository at this point in the history
  • Loading branch information
EXPEbdodla committed Aug 18, 2024
1 parent 09b026b commit d235832
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/feast/on_demand_feature_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ def from_proto(
],
sources=sources,
feature_transformation=transformation,
mode=on_demand_feature_view_proto.spec.mode,
mode=on_demand_feature_view_proto.spec.mode or "pandas",
description=on_demand_feature_view_proto.spec.description,
tags=dict(on_demand_feature_view_proto.spec.tags),
owner=on_demand_feature_view_proto.spec.owner,
Expand Down

0 comments on commit d235832

Please sign in to comment.