shashbha14 commented on code in PR #66102:
URL: https://github.com/apache/airflow/pull/66102#discussion_r3258800580
##########
task-sdk/src/airflow/sdk/definitions/timetables/_cron.py:
##########
@@ -27,13 +27,32 @@
from pendulum.tz.timezone import FixedTimezone, Timezone
+# Mirrors airflow.utils.dates.cron_presets in airflow-core (the SDK cannot
+# import core). If a preset is added or changed here it must also be updated
+# there, and vice-versa.
+CRON_PRESETS: dict[str, str] = {
+ "@hourly": "0 * * * *",
+ "@daily": "0 0 * * *",
+ "@weekly": "0 0 * * 0",
+ "@monthly": "0 0 1 * *",
+ "@quarterly": "0 0 1 */3 *",
+ "@yearly": "0 0 1 1 *",
+}
+
Review Comment:
The re-export approach was blocked by the check-sdk-imports prek hook which
forbids importing from airflow.sdk in airflow-core files. Reverted to two
separate dicts with sync comments pointing at each other — same
approach as kaxil originally suggested.
--
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]