Skip to content

Commit

Permalink
Fix bug in SchedulerJobRunner._process_executor_events (#40563)
Browse files Browse the repository at this point in the history
(cherry picked from commit a8c4830)
  • Loading branch information
vincbeck authored and utkarsharma2 committed Jul 12, 2024
1 parent d42ce96 commit a11a2fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/jobs/scheduler_job_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -769,7 +769,7 @@ def _process_executor_events(self, session: Session) -> int:
)
if info is not None:
msg += " Extra info: %s" % info # noqa: RUF100, UP031, flynt
self._task_context_logger.error(msg, ti, state, ti.state, info, ti=ti)
self._task_context_logger.error(msg, ti=ti)

# Get task from the Serialized DAG
try:
Expand Down

0 comments on commit a11a2fc

Please sign in to comment.