Skip to content

Commit b859e16

Browse files
committed
small fix
1 parent 0a0a560 commit b859e16

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

python/hsfs/engine/spark.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
import tzlocal
3636
from hopsworks_common.core.constants import HAS_NUMPY, HAS_PANDAS
3737
from hsfs.constructor import query
38+
from hsfs.core import feature_group_api
3839

3940
# in case importing in %%local
4041
from hsfs.core.vector_db_client import VectorDbClient
@@ -252,7 +253,7 @@ def reconcile_schema(
252253
[feature.name for feature in fg_alias.feature_group._features] +
253254
self.HUDI_SPEC_FEATURE_NAMES if fg_alias.feature_group.time_travel_format == "HUDI" else []
254255
):
255-
full_fg = self._feature_group_api.get(
256+
full_fg = feature_group_api.FeatureGroupApi().get(
256257
feature_store_id=fg_alias.feature_group._feature_store_id,
257258
name=fg_alias.feature_group.name,
258259
version=fg_alias.feature_group.version,

0 commit comments

Comments
 (0)