Skip to content

Commit

Permalink
fix(providers/databricks): remove additional argument passed to repai…
Browse files Browse the repository at this point in the history
…r_run (#44140)
  • Loading branch information
Lee-W authored Nov 19, 2024
1 parent 4bce3a3 commit f5abe50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def _handle_databricks_operator_execution(operator, hook, log, context) -> None:
repair_json = {"run_id": operator.run_id, "rerun_all_failed_tasks": True}
if latest_repair_id is not None:
repair_json["latest_repair_id"] = latest_repair_id
operator.json["latest_repair_id"] = hook.repair_run(operator, repair_json)
operator.json["latest_repair_id"] = hook.repair_run(repair_json)
_handle_databricks_operator_execution(operator, hook, log, context)
raise AirflowException(error_message)

Expand Down

0 comments on commit f5abe50

Please sign in to comment.