In my code I made a little change, to test the execution with more time. So in LongRunningProcessOrchestrator.cs I changed the RunAsync method with var delay = TimeSpan.FromMinutes(15);
So the task should delay for 15 minutes. The problem is that method is being executed multiple times, and it doesn´t stops.

I was expecting to get a Complete status after 15 minutes, and is not happening.
If I set var delay = TimeSpan.FromMinutes(5); works fine. But more than 10 minutes start failing.
In my code I made a little change, to test the execution with more time. So in LongRunningProcessOrchestrator.cs I changed the RunAsync method with var delay = TimeSpan.FromMinutes(15);
So the task should delay for 15 minutes. The problem is that method is being executed multiple times, and it doesn´t stops.
I was expecting to get a Complete status after 15 minutes, and is not happening.
If I set var delay = TimeSpan.FromMinutes(5); works fine. But more than 10 minutes start failing.