Liam England
04/05/2022, 2:02 PMretry_delay
to the task and have it wait an hour, or would it be better practice to add some sort of handler to reschedule the flow for an hour later? Is the retry_delay
basically a sleep in the backend, or does it handle scheduling the task?Kevin Kho
04/05/2022, 2:04 PMretry_delay
is the easiest solution and people do this to poll for an event happening by giving a high number of max_retries
.
I think it’s harder to track the retry number if you use a subflow and reschedule. I wonder what would not an infinite loop, whereas the retries will be capped with a maxLiam England
04/05/2022, 2:08 PM