Hi all, I've got a task for which I've configured ...
# flyte-support
g
Hi all, I've got a task for which I've configured to have 3 retry attempts (and I believe I have the default of 2 system retries). However, I've noticed that that task isn't retrying after the first failure. What did I miss?
f
User failures
g
Right, but shouldn't
@task(...,retries=3)
allow for 3 User failures?
f
You can raise flyteretryable error
g
Ah, perfect. So catch whatever error I notice (in my case a 503 from Cloud Storage) and raise a
flyteretryable
. Thanks Ketan!
👍 1