This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
Replies: 1 comment
-
Hello @dcore94 Can you provide more details of the failed task, and any logs that indicates the task is not retried? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Even if I have the following definition:
{
"name" : "http",
"taskReferenceName" : "get_workspace",
"type" : "HTTP",
"inputParameters" : {
"http_request": {
"uri" : "${init.input.storagehub}/workspace",
"method" : "GET"
}
},
"retryCount" : 5,
"retryDelaySeconds": 10
}
The task still fails on occasional ReadTimeoutExceptions blocking the whole workflow in FAILED status. I would expect it to retry 5 times within the following minute....
I don't see why since the code at [1] looks ok to me... any explanation? Thanks!
[1]
conductor/contribs/src/main/java/com/netflix/conductor/contribs/tasks/http/HttpTask.java
Line 129 in 38379b8
Beta Was this translation helpful? Give feedback.
All reactions