uranusjr commented on code in PR #65958:
URL: https://github.com/apache/airflow/pull/65958#discussion_r3310301885
##########
task-sdk/src/airflow/sdk/execution_time/supervisor.py:
##########
@@ -2352,6 +2449,12 @@ def supervise_task(
if not dag_rel_path:
raise ValueError("dag_path is required")
+ try:
+ coordinator = get_coordinator_manager().for_queue(ti.queue)
+ except:
+ log.exception("Failed to initialize coordinator for task", ti=ti)
Review Comment:
Changed (I didn’t include run_id since coordinator init should only be
affected by the task definition)
--
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]