From 67601e3ba746b2466ced03bd20e0a18b2f872c6b Mon Sep 17 00:00:00 2001 From: Amogh Desai Date: Mon, 27 Oct 2025 16:12:47 +0530 Subject: [PATCH 1/2] Log execution API server URL at task startup --- task-sdk/src/airflow/sdk/execution_time/supervisor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/task-sdk/src/airflow/sdk/execution_time/supervisor.py b/task-sdk/src/airflow/sdk/execution_time/supervisor.py index 493644d50801c..112a1a7f80789 100644 --- a/task-sdk/src/airflow/sdk/execution_time/supervisor.py +++ b/task-sdk/src/airflow/sdk/execution_time/supervisor.py @@ -1930,6 +1930,7 @@ def supervise( limits = httpx.Limits(max_keepalive_connections=1, max_connections=10) client = Client(base_url=server or "", limits=limits, dry_run=dry_run, token=token) close_client = True + log.info("Connecting to execution API server", server=server) start = time.monotonic() From edd63b608467b15916074391d80eaa41c9382f55 Mon Sep 17 00:00:00 2001 From: Amogh Desai Date: Mon, 27 Oct 2025 16:22:46 +0530 Subject: [PATCH 2/2] Update task-sdk/src/airflow/sdk/execution_time/supervisor.py Co-authored-by: Kaxil Naik --- task-sdk/src/airflow/sdk/execution_time/supervisor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/task-sdk/src/airflow/sdk/execution_time/supervisor.py b/task-sdk/src/airflow/sdk/execution_time/supervisor.py index 112a1a7f80789..73dbc448fb2db 100644 --- a/task-sdk/src/airflow/sdk/execution_time/supervisor.py +++ b/task-sdk/src/airflow/sdk/execution_time/supervisor.py @@ -1930,7 +1930,7 @@ def supervise( limits = httpx.Limits(max_keepalive_connections=1, max_connections=10) client = Client(base_url=server or "", limits=limits, dry_run=dry_run, token=token) close_client = True - log.info("Connecting to execution API server", server=server) + log.debug("Connecting to execution API server", server=server) start = time.monotonic()