This is an automated email from the ASF dual-hosted git repository.
jasonliu pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-1-test by this push:
new 7225ee400e6 [v3-1-test] Log execution API server URL at task startup
(#57343) (#57409)
7225ee400e6 is described below
commit 7225ee400e635e1051c8957787fc434712b46fc0
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Oct 28 17:16:30 2025 +0800
[v3-1-test] Log execution API server URL at task startup (#57343) (#57409)
(cherry picked from commit cd32d1b29dca31b2c3a385ff1c8a376c9a28f368)
Co-authored-by: Amogh Desai <[email protected]>
---
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 ddf78e40982..6bf609f1139 100644
--- a/task-sdk/src/airflow/sdk/execution_time/supervisor.py
+++ b/task-sdk/src/airflow/sdk/execution_time/supervisor.py
@@ -1904,6 +1904,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.debug("Connecting to execution API server", server=server)
start = time.monotonic()