Can I delay each iteration of a loop in Conductor by a specific duration, like 15 minutes?

Can I make the loop try again after 15 minutes if the status is still Pending?

Answer:

  • Use the WAIT task before checking the status again. You can configure it like this:
{
    "name": "wait_task",
    "type": "WAIT",
    "inputParameters": {
        "duration": "15 minutes"
    }
}