milton0825 commented on a change in pull request #8852:
URL: https://github.com/apache/airflow/pull/8852#discussion_r428262018
##########
File path: airflow/models/dagrun.py
##########
@@ -431,6 +432,7 @@ def verify_integrity(self, session=None):
# check for removed or restored tasks
task_ids = []
for ti in tis:
+ task_instance_mutation_hook(ti)
Review comment:
L468 is reached when the task instance does not exist thus you create
the task instance. However, during retries, the task instance already exists so
it won't reach L468
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]