Hi,
It is weird or Prefect flow are made like that firstly I run this simple timeout test to check whether this function will timeout or not as expected
"""
from prefect import flow, task
import time
@flow(name='my-flow-check',
timeout_seconds=30,
log_prints=True)
def greetings():
print("comes into greetings")
time.sleep(40)
print("greeting from prefect")
greetings()
"""
On Windows It won't get timeout but
In Unix based Ubuntu OS it works fine. Why's that ?
Is Prefect is made for Linux User in mind ?