uranusjr commented on code in PR #30110:
URL: https://github.com/apache/airflow/pull/30110#discussion_r1136501506


##########
airflow/jobs/triggerer_job.py:
##########
@@ -483,9 +483,14 @@ async def create_triggers(self):
         while self.to_create:
             trigger_id, trigger_instance = self.to_create.popleft()
             if trigger_id not in self.triggers:
+                task_instance: TaskInstance = trigger_instance.task_instance
+                dag_id = task_instance.dag_id
+                execution_date = task_instance.execution_date

Review Comment:
   Since `execution_date` is disfavoured, it is better to log the run ID 
instead.



-- 
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]

Reply via email to