This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch v3-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v3-0-test by this push:
     new 22d9bc74a2a [v3-0-test] Fix `external_executor_id` name in log message 
(#54675) (#54689)
22d9bc74a2a is described below

commit 22d9bc74a2a188cb24d65f8484726bfdb29d26ef
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Aug 20 01:54:49 2025 +0200

    [v3-0-test] Fix `external_executor_id` name in log message (#54675) (#54689)
    
    (cherry picked from commit 82dbdfdb5a63f58d2fc75c9eb6f319b0fa1e0f34)
    
    Co-authored-by: Jed Cunningham 
<[email protected]>
---
 airflow-core/src/airflow/jobs/scheduler_job_runner.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow-core/src/airflow/jobs/scheduler_job_runner.py 
b/airflow-core/src/airflow/jobs/scheduler_job_runner.py
index 981117c0733..9d7fedbb50c 100644
--- a/airflow-core/src/airflow/jobs/scheduler_job_runner.py
+++ b/airflow-core/src/airflow/jobs/scheduler_job_runner.py
@@ -866,7 +866,7 @@ class SchedulerJobRunner(BaseJobRunner, LoggingMixin):
 
             if state in (TaskInstanceState.QUEUED, TaskInstanceState.RUNNING):
                 ti.external_executor_id = info
-                cls.logger().info("Setting external_id for %s to %s", ti, info)
+                cls.logger().info("Setting external_executor_id for %s to %s", 
ti, info)
                 continue
 
             msg = (

Reply via email to