Is there a way to have all scheduled flows wait to...
# prefect-cloud
g
Is there a way to have all scheduled flows wait to kick off until after one flow in particular finishes running? I.e., I have a flow update_historical_bonus that takes ~3 mins to run that I will have run twice a day, and other flows that either run every minute or every 10 minutes. I want the flows scheduled to run during the 3 mins of update_historical_bonus to hold off/have their schedule overridden.
1
c
You can have an automation that pauses the schedule / resumes the schedule when the update_historical_bonus starts/completes
🙌 1
g
Thank you! Easy solution, I was definitely overthinking it haha