This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
Is there a way to introduce a delay between the loops of a DO_WHILE loop or a sleep in netflix conductor? #3054
Unanswered
jiggy71189
asked this question in
Q&A
Replies: 1 comment 5 replies
-
Adding a WAIT task can help you solve this: {
"taskType": "WAIT",
"inputParameters": {
"duration": "2 days 3 hours"
}
} https://orkes.io/content/docs/reference-docs/wait-task The lowest interval accepted is 1s. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using Do_While loop in my workflow. And inside loop I have one http task that will be executed again based on the loop Condition. I need to add delay between loop task means whenever it would go for execute second iteration task then it should wait for specific amount of time.
How can I achieve this feature in workflow?
Beta Was this translation helpful? Give feedback.
All reactions