File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7070from feast .protos .feast .serving .ServingService_pb2 import (
7171 FieldStatus ,
7272 GetOnlineFeaturesResponse ,
73- )
73+ FieldStatusValue )
7474from feast .protos .feast .types .EntityKey_pb2 import EntityKey as EntityKeyProto
7575from feast .protos .feast .types .Value_pb2 import RepeatedValue , Value
7676from feast .registry import Registry
@@ -1349,7 +1349,7 @@ def _read_from_online_store(
13491349 provider : Provider ,
13501350 requested_features : List [str ],
13511351 table : FeatureView ,
1352- ) -> List [Tuple [List [Timestamp ], List ["FieldStatus.ValueType" ], List [Value ]]]:
1352+ ) -> List [Tuple [List [Timestamp ], List [FieldStatusValue ], List [Value ]]]:
13531353 """ Read and process data from the OnlineStore for a given FeatureView.
13541354
13551355 This method guarentees that the order of the data in each element of the
@@ -1404,7 +1404,7 @@ def _read_from_online_store(
14041404 def _populate_response_from_feature_data (
14051405 feature_data : Iterable [
14061406 Tuple [
1407- Iterable [Timestamp ], Iterable ["FieldStatus.ValueType" ], Iterable [Value ]
1407+ Iterable [Timestamp ], Iterable [FieldStatusValue ], Iterable [Value ]
14081408 ]
14091409 ],
14101410 indexes : Iterable [Iterable [int ]],
You can’t perform that action at this time.
0 commit comments