Skip to content

Commit c6d55c7

Browse files
resolved inf conflicts
Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
1 parent c26ae75 commit c6d55c7

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

sdk/python/feast/feature_store.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -608,12 +608,19 @@ def _make_inferences(
608608
update_feature_views_with_inferred_features_and_entities(
609609
sfvs_to_update, entities + entities_to_update, self.config
610610
)
611+
<<<<<<< HEAD
611612
# We need to attach the time stamp fields to the underlying data sources
612613
# and cascade the dependencies
613614
update_feature_views_with_inferred_features_and_entities(
614615
odfvs_to_update, entities + entities_to_update, self.config
615616
)
616617
# TODO(kevjumba): Update schema inference
618+
=======
619+
update_feature_views_with_inferred_features_and_entities(
620+
odfvs_to_update, entities + entities_to_update, self.config
621+
)
622+
# TODO(kevjumba): Update schema inferrence
623+
>>>>>>> 569884db8 (cleaned up test)
617624
for sfv in sfvs_to_update:
618625
if not sfv.schema:
619626
raise ValueError(

sdk/python/feast/inference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
from feast.infra.offline_stores.file_source import FileSource
1414
from feast.infra.offline_stores.redshift_source import RedshiftSource
1515
from feast.infra.offline_stores.snowflake_source import SnowflakeSource
16-
from feast.on_demand_feature_view import OnDemandFeatureView
1716
from feast.repo_config import RepoConfig
1817
from feast.stream_feature_view import StreamFeatureView
18+
from feast.on_demand_feature_view import OnDemandFeatureView
1919
from feast.types import String
2020
from feast.value_type import ValueType
2121

sdk/python/tests/unit/test_on_demand_python_transformation.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
Float64,
2929
Int64,
3030
String,
31-
UnixTimestamp,
3231
ValueType,
3332
_utc_now,
3433
from_value_type,

0 commit comments

Comments
 (0)