ashb commented on a change in pull request #10917:
URL: https://github.com/apache/airflow/pull/10917#discussion_r524558481



##########
File path: airflow/models/baseoperator.py
##########
@@ -1102,7 +1102,8 @@ def run(
         end_date = end_date or self.end_date or timezone.utcnow()
 
         for execution_date in self.dag.date_range(start_date, 
end_date=end_date):
-            TaskInstance(self, execution_date).run(
+            ti = TaskInstance(self, execution_date)
+            ti.run(

Review comment:
       Is this needed?




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


Reply via email to