what is the unit of the timeout when specifying it...
# flyte-support
b
what is the unit of the timeout when specifying it as task meta data. for example
Copy code
@task(timeout=60)
def foo:
    return "foo"
safe to assume
60
is seconds?milliseconds? cc @nice-zebra-99977
h
Hey @big-agency-9108, it looks like the timeout can be given as either a
datetime.timedelta
or an
int
. If it's an
int
then it is parsed into a
timedelta
as seconds as you suggested.
✔️ 1
153 Views