Skip to content

Commit

Permalink
Fix bug in SchedulerJobRunner._process_executor_events (#40563)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincbeck authored Jul 3, 2024
1 parent 888b4a0 commit a8c4830
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 @@ -780,7 +780,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 a8c4830

Please sign in to comment.