gaurav7261 commented on code in PR #41412:
URL: https://github.com/apache/airflow/pull/41412#discussion_r1723654239


##########
airflow/providers/databricks/operators/databricks.py:
##########
@@ -872,7 +896,23 @@ def execute_complete(self, context: Context, event: 
dict[str, Any] | None = None
             _handle_deferrable_databricks_operator_completion(event, self.log)
             if event["repair_run"]:
                 self.repair_run = False
+                run_state = RunState.from_json(event["run_state"])
                 self.run_id = event["run_id"]
+                job_id = self._hook.get_job_id(self.run_id)
+                repair_reason = next(
+                    (
+                        reason
+                        for reason in 
(self.databricks_repair_reason_new_settings or {}).keys()
+                        if reason in run_state.state_message
+                    ),
+                    None,
+                )
+                if repair_reason is not None and 
self.databricks_repair_reason_new_settings:
+                    new_settings_json = normalise_json_content(
+                        
self.databricks_repair_reason_new_settings[repair_reason]
+                    )
+                    self._hook.update_job(job_id=str(job_id), 
json=new_settings_json)

Review Comment:
   sure working on it



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to