Is there a simple way to write a schedule that kic...
# prefect-getting-started
n
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
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
Thanks Nate! I ll give it a try
👍 1