Bastian Röhrig
08/31/2021, 6:55 AMfrom prefect import Flow, task
from prefect.executors import LocalDaskExecutor
from prefect.engine.signals import SUCCESS
@task(timeout=60)
def succeed():
raise SUCCESS()
with Flow("timeout-test") as flow:
succeed()
flow.executor = LocalDaskExecutor()
flow.register(project_name="tutorial")
Is this the intended behaviour? Can anyone reproduce it?Zach Angell
Zach Angell
Marvin
08/31/2021, 1:03 PMMarvin
08/31/2021, 1:03 PM