This is an automated email from the ASF dual-hosted git repository.
henry3260 pushed a commit to branch v3-3-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-3-test by this push:
new 58ba8d0b11c [v3-3-test] Fix OTel integration test after task.execute
span addition (#69236) (#69246)
58ba8d0b11c is described below
commit 58ba8d0b11c8f2c7726ef5a302735e4611d13717
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 3 17:49:35 2026 +0800
[v3-3-test] Fix OTel integration test after task.execute span addition
(#69236) (#69246)
---
airflow-core/tests/integration/otel/test_otel.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/airflow-core/tests/integration/otel/test_otel.py
b/airflow-core/tests/integration/otel/test_otel.py
index d19756094b6..6826d6cc877 100644
--- a/airflow-core/tests/integration/otel/test_otel.py
+++ b/airflow-core/tests/integration/otel/test_otel.py
@@ -467,9 +467,10 @@ class TestOtelIntegration:
"_validate_task_inlets_and_outlets": "_prepare",
"_prepare": "run",
"_execute_task": "run",
+ "task.execute": "_execute_task",
"finalize": "worker.task1",
"run": "worker.task1",
- "sub_span1": "_execute_task",
+ "sub_span1": "task.execute",
"dag_run.otel_test_dag": None,
"task_run.task1": "dag_run.otel_test_dag",
"worker.task1": "task_run.task1",