https://prefect.io logo
k

Kenneth Miller

07/13/2021, 9:49 PM
Hey all - question about interval schedules - if I schedule a flow to execute every minute: schedule = IntervalSchedule(interval=timedelta(minutes=1))...but, the flow run takes longer than a minute, will the next flow run wait till the current flow run is complete?
n

nicholas

07/13/2021, 9:52 PM
Hi @Kenneth Miller - no, unless you've set a flow concurrency limit of 1 (available in Prefect Cloud).
3 Views