ashb commented on code in PR #49180:
URL: https://github.com/apache/airflow/pull/49180#discussion_r2041139125
##########
airflow-core/src/airflow/jobs/scheduler_job_runner.py:
##########
@@ -819,11 +819,11 @@ def process_executor_events(
ti.pid,
)
- if (active_ti_span := cls.active_spans.get(ti.key)) is not None:
+ if (active_ti_span := cls.active_spans.get(ti.try_id)) is not None:
Review Comment:
Sorry, this should now be `ti.id` -- it _was_ ti.try_id, but a few days ago
I merged a change where this column was deleted and `ti.id` is the
'unique-per-attempt' ID value we should use now.
--
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]