xBis7 commented on code in PR #62436:
URL: https://github.com/apache/airflow/pull/62436#discussion_r2854612632
##########
airflow-core/src/airflow/models/dagrun.py:
##########
@@ -405,11 +367,14 @@ def __init__(
self.triggered_by = triggered_by
self.triggering_user_name = triggering_user_name
self.scheduled_by_job_id = None
+ self.context_carrier = {}
+
+ # We never call .end() on this span. It's solely used to generate a
trace context for the rest of the run.
+ empty_context = context.Context()
+ span = tracer.start_span("notused", context=empty_context)
Review Comment:
I see, this never ends which means that it never gets exported.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]