Open He-Wolf opened 1 month ago
@He-Wolf Thanks for your feedback! We will investigate and update as appropriate.
I found another documentation page where the durable function runtime state values are a bit different: https://learn.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-instance-management?tabs=javascript#query-instances
@He-Wolf Thanks for your feedback! I've assigned this issue to the author who will investigate and update as appropriate.
The possible values of runtime status is lited here: https://learn.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-event-publishing?tabs=csharp-script#event-schema
In the
subject
part, it is said that the runtime status can be: Running, Completed, Failed, and Terminated. But in thedata.runtimeStatus
section it is said that runtime status can be: Running, Completed, Failed and Canceled.My question is if we will get
Terminated
,Canceled
or both of these values depending on the property?