Sean Talia
07/20/2021, 3:38 PMSean Talia
07/20/2021, 3:40 PMCronClock(
cron="0 0 7/8 * * *",
start_date=pendulum.datetime(
2021, 7, 1, 0, 0, 0, tz="America/New_York"
),
)
and the "Overview" pane in the Cloud UI says:
At 0 minutes past the hour, every 8 hours, starting at 07:00 AM (EDT)
which is indeed correct, but then when I look at the upcoming scheduled flow runs, I'm seeing this:Jenny
07/20/2021, 3:45 PMSean Talia
07/20/2021, 3:48 PMKevin Kho
Sean Talia
07/20/2021, 3:50 PMSean Talia
07/20/2021, 3:51 PMJenny
07/20/2021, 3:52 PMSean Talia
07/20/2021, 3:53 PMSean Talia
07/20/2021, 3:54 PMJenny
07/20/2021, 4:02 PMSean Talia
07/20/2021, 4:02 PM0 0 7/8 ? * * *
which isn't valid w/ croniter apparently, but I'm pretty sure the new syntax I'm using without the ?
special character is what I wantSean Talia
07/20/2021, 4:03 PMJenny
07/20/2021, 5:21 PMCronClock(
cron="0 7/8 * * *",
start_date=pendulum.datetime(
2021, 7, 1, 0, 0, 0, tz="America/New_York"
),
)])
Sean Talia
07/20/2021, 5:24 PMJenny
07/20/2021, 5:26 PMSean Talia
07/20/2021, 5:41 PM0 7/8 * * * *
(bad, I know why)
2. 0 0 7/8 * * *
(bad, although the schedule seemed okay when it was spelled out in plain English)
3. 0 7/8 * * *
goodSean Talia
07/20/2021, 5:41 PMJenny
07/20/2021, 5:43 PMSean Talia
07/20/2021, 5:43 PM0 0 7/8 * * *
and 0 7/8 * * *
?Sean Talia
07/20/2021, 5:43 PMJenny
07/20/2021, 5:44 PMJenny
07/20/2021, 5:45 PMMarvin
07/20/2021, 5:45 PM