File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1313from feast .feature_table import FeatureTable
1414from feast .feature_view import DUMMY_ENTITY_ID , FeatureView
1515from feast .infra .offline_stores .offline_store import RetrievalJob
16- from feast .infra .passthrough_provider import PassthroughProvider
1716from feast .on_demand_feature_view import OnDemandFeatureView
1817from feast .protos .feast .types .EntityKey_pb2 import EntityKey as EntityKeyProto
1918from feast .protos .feast .types .Value_pb2 import Value as ValueProto
@@ -148,6 +147,7 @@ def online_read(
148147def get_provider (config : RepoConfig , repo_path : Path ) -> Provider :
149148 if "." not in config .provider :
150149 if config .provider in {"gcp" , "aws" , "local" }:
150+ from feast .infra .passthrough_provider import PassthroughProvider
151151 return PassthroughProvider (config )
152152 else :
153153 raise errors .FeastProviderNotImplementedError (config .provider )
You can’t perform that action at this time.
0 commit comments