ashb commented on code in PR #25795:
URL: https://github.com/apache/airflow/pull/25795#discussion_r950023018
##########
airflow/timetables/base.py:
##########
@@ -200,3 +203,15 @@ def next_dagrun_info(
a DagRunInfo object when asked at another time.
"""
raise NotImplementedError()
+
+ def generate_run_id(
+ self,
+ *,
+ run_type: "DagRunType",
+ logical_date: DateTime,
+ data_interval: Optional[DataInterval],
+ **extra,
+ ) -> str:
+ from airflow.models.dagrun import DagRun
+
+ return DagRun.generate_run_id(run_type, logical_date)
Review Comment:
Yeah fair comment.
--
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]