We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11b6da0 commit 2e9e7a8Copy full SHA for 2e9e7a8
sdk/python/feast/infra/passthrough_provider.py
@@ -89,8 +89,8 @@ def batch_engine(self) -> BatchMaterializationEngine:
89
90
if engine_config_type in BATCH_ENGINE_CLASS_FOR_TYPE:
91
engine_config_type = BATCH_ENGINE_CLASS_FOR_TYPE[engine_config_type]
92
- engine_module, engine_class = engine_config_type.rsplit(".", 1)
93
- engine_class = importer.import_class(engine_module, engine_class)
+ engine_module, engine_class_name = engine_config_type.rsplit(".", 1)
+ engine_class = importer.import_class(engine_module, engine_class_name)
94
95
if config_is_dict:
96
_batch_engine = engine_class(
0 commit comments