Hi, I'm using Prefect 2 to set timeouts for some o...
# ask-community
m
Hi, I'm using Prefect 2 to set timeouts for some of my tasks, but when I add the
timeout_seconds
in the decorator:
@task(timeout_seconds=600, name="write_to_deltalake", log_prints= True)
, it doesn't seem to work for larger numbers. I tested it with timeout_seconds=1 and it worked, but isn't working with 600. Is this a bug or am I using it wrong