Azure / durabletask

Durable Task Framework allows users to write long running persistent workflows in C# using the async/await capabilities.
Apache License 2.0
1.47k stars 287 forks source link

DurableTask.AzureStorage Based Orchestrations Never Stop Looping #1033

Closed zpertee closed 5 months ago

zpertee commented 5 months ago

I'm having an issue where my activity functions never stop looping. In my particular example I have a rest api for submitting an order. This starts a durable task orchestration that does a bunch of validation on the order and then sends an email notification. This seems to all be working except I receive the same email every 3 minutes indefinitely. I'm assuming I'm missing something to clear the durable task request, but any idea of where that might be? Otherwise, we definitely have a very annoying bug.

zpertee commented 5 months ago

Sorry this is an ID10T error... Hidden error + DTFx retry logic was causing the unintended behavior.