Skip to content

Commit

Permalink
requested_features is passed to online_read from passthrough_provider
Browse files Browse the repository at this point in the history
Signed-off-by: Aurobindo Mondal <aurobindoc1991@gmail.com>
  • Loading branch information
aurobindoc committed Dec 5, 2021
1 parent 2d3cea1 commit b5202df
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sdk/python/feast/infra/passthrough_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ def online_read(
requested_features: List[str] = None,
) -> List[Tuple[Optional[datetime], Optional[Dict[str, ValueProto]]]]:
set_usage_attribute("provider", self.__class__.__name__)
result = self.online_store.online_read(config, table, entity_keys)
result = self.online_store.online_read(
config, table, entity_keys, requested_features
)

return result

Expand Down

0 comments on commit b5202df

Please sign in to comment.