Hello,
I have a Do Until loop that quits when a counter is >= to the length of an array I am iterating. In the Do Until loop, I send an approval and wait for the response before moving to the next item in the array to send the approval. After this approval, I increment my counter by 1 (it starts at 0). The entire flow is completing a task that sends out a queue of approvals, and if someone rejects an approval it goes back to the original bucket. So, if someone rejects an approval, I want to quit the loop, I set the counter variable to be equal to the length of the array + 1, to break the loop. However, I have noticed the loop is quitting despite no rejections. I have tried messing with the timeout and count of the do until loop, but I am not sure I understand. It has done this running for 6 hours - 5 days. Would anyone be able to help solve this?