Hi folks, i hope one of the power automate community might be able to help me out. I have a flow that is doing everything I want except for one part.
I have a task that is being created in planner.
I want the flow to wait until the task is completed and then as a final step update a sharepoint list.
The issue I'm running into is that once the task is completed it does not exit the "do until" until either the retry or timeout count has reached the maximum.
For testing purposes and to save time i have set my retry count to 3
as you can see on the first run through the percentage complete value is 0 which is expected as the task is not completed

On the second time around you can see that the percentage complete value has now changed to 100 (Which means the task has been completed)

The same is true for the third time around at which point because i have a retry count of three it exits and goes to the next step.
The issue is that when it reached count 2 and the percentage complete was now 100, it should have exited the "do until", it should not have reached the third round (i may be completely misunderstanding what i have read about do until loops though)
My assumption was that once the percentage complete was 100, the variable that is getting set with "percentage complete" would be 100 and hence the condition of "status = 100" would be met and it would exit the do until condition

While working with small timeframes this is fine, but i want my delay to be daily not minutely and run for 30 days. I cant have the sharepoint list updating on day 30 if the task was actually completed on day 2.
On a side not, is percentage complete the only way to tell if a task in planner is complete? I am surprised that there is no task status.