https://prefect.io logo
n

Nicola Pancotti

09/08/2023, 11:05 PM
Is there a simple way to write a schedule that kicks a flow run after a given time interval that the previous run has finished (not started)?
1
n

Nate

09/09/2023, 12:56 AM
hi @Nicola Pancotti, you can use
run_deployment
within an
on_completion
hook like this
and pass
scheduled_start_time
with like now() + some timedelta
n

Nicola Pancotti

09/09/2023, 1:33 AM
Thanks Nate! I ll give it a try
👍 1