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.51k stars 290 forks source link

AzureStorageOrchestrationService fails to detect existing instance ! #1048

Closed msoliman85 closed 6 months ago

msoliman85 commented 7 months ago

I am attempting to CreateOrchestrationInstanceAsync using an instance id which already ran and completed. Using The AzureStorageOrchestrationService instance with the same ID is always created as new and it is not detected as existing.

InstanceId: 123 first run image

second run image

I tested with the ServiceBusOrchestrationService and it is working as expected.

image

what is causing the AzureStorageOrchestrationService to not work correctly?