potiuk commented on code in PR #41773:
URL: https://github.com/apache/airflow/pull/41773#discussion_r1732885672


##########
airflow/providers/google/cloud/operators/gcs.py:
##########
@@ -795,11 +795,11 @@ def execute(self, context: Context) -> list[str]:
             orig_end = context["data_interval_end"]
         except KeyError:
             orig_start = pendulum.instance(context["execution_date"])
-            following_execution_date = 
context["dag"].following_schedule(context["execution_date"])
-            if following_execution_date is None:
-                orig_end = None
+            next_dagrun = 
context["dag"].next_dagrun_info(last_automated_dagrun=None, restricted=False)

Review Comment:
   I guess we need to add a compatibility code here.



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