Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bubriks committed Dec 20, 2024
1 parent 22162b2 commit 6a96b06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/hsfs/engine/spark.py
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ def save_stream_dataframe(
"wait_for_online_ingestion", False
):
feature_group.get_latest_online_ingestion().wait_for_completion(
options=offline_write_options.get("online_ingestion_options", {})
options=write_options.get("online_ingestion_options", {})
)

return query
Expand Down Expand Up @@ -586,7 +586,7 @@ def _save_online_dataframe(self, feature_group, dataframe, write_options):
"wait_for_online_ingestion", False
):
feature_group.get_latest_online_ingestion().wait_for_completion(
options=offline_write_options.get("online_ingestion_options", {})
options=write_options.get("online_ingestion_options", {})
)

def _get_headers(
Expand Down

0 comments on commit 6a96b06

Please sign in to comment.