Hi, I have a question about ```serve``` method Any...
# prefect-getting-started
d
Hi, I have a question about
Copy code
serve
method Any time when I run this method on available flows, it resets the schedule time(even if the flow wasn’t changed itself) any advice? code looks like
Copy code
deployments = []
    for flw, interval in WORKLOADS[LOCATION].items():
        deployments.append(flw.to_deployment(name=LOCATION, interval=interval))
    serve(*deployments)