Haha good to know. It seems to me that an infinite loop seems to be easier on the Prefect API and thus better with resources on the worker side. It’s especially useful when I don’t know the exact time the flow run will take to execute, so a set schedule doesn’t work out that well since it sometimes causes multiple flow runs to be Running at once, leading to backlogs. Running it sequentially in a “while: True” loop just starts the next iteration whenever the previous one finishes, so timing isn’t an issue.