Skip to content

Commit

Permalink
[FeatureStore] Avoid raising error in dict pop (#5695)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomerm-iguazio committed Jun 3, 2024
1 parent 61e0d47 commit d8bf9f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlrun/feature_store/retrieval/spark_merger.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def _get_engine_df(
source_kind = feature_set.spec.source.kind
source_path = feature_set.spec.source.path
source_kwargs.update(feature_set.spec.source.attributes)
source_kwargs.pop("additional_filters")
source_kwargs.pop("additional_filters", None)
else:
target = get_offline_target(feature_set)
if not target:
Expand Down

0 comments on commit d8bf9f4

Please sign in to comment.