Hi! The first ETL flow is success. But the next sc...
# ask-community
a
Hi! The first ETL flow is success. But the next scheduled dont run. Please help me
k
Hey @Anh Nguyen, are you using only Prefect Core and
flow.run()
? Are you saying that time passed but it didn’t trigger?
a
Yes, That's correct! i'm using using only Prefect Core and 
flow.run().
it did not trigger
k
What Prefect version are you on?
Can you reproduce with a small code snippet and how is your schedule defined?
a
Copy code
schedule = IntervalSchedule(
    start_date=datetime.utcnow() + timedelta(seconds=1),
    interval=timedelta(minutes=90),
)

with Flow("etl", schedule=schedule) as flow:
yeb! This is my code snippet: schedule defined
k
This looks good to me. Is this Prefect 0.15.5?