Skip to content

Commit

Permalink
Merge pull request #36 from Ki-Insurance/fix-null-entity-error
Browse files Browse the repository at this point in the history
MOPS-48: temp fix for null inputs of ODFs
  • Loading branch information
arek-xeb authored Aug 13, 2024
2 parents 9e15736 + 207e24d commit e8fa56f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/feast/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -926,7 +926,7 @@ def _prepare_entities_to_read_from_online_store(
# Convert values to Protobuf once.
entity_proto_values = {
k: python_values_to_proto_values(
v, entity_type_map.get(k, ValueType.UNKNOWN)
v, entity_type_map.get(k, ValueType.FLOAT)
)
for k, v in entity_value_lists.items()
}
Expand Down

0 comments on commit e8fa56f

Please sign in to comment.