You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have the below method to get the status of all workflows
[FunctionName("QueryAllWorkflows")]publicstaticasyncTask<HttpResponseMessage>QueryAllWorkflows([HttpTrigger(AuthorizationLevel.Function,methods:"get",Route="workflow/status/all")]HttpRequestMessagequeryWorkflowsRequest,[OrchestrationClient]DurableOrchestrationClientquery,ILoggerlog){IList<DurableOrchestrationStatus>workflowInstances=awaitquery.GetStatusAsync();// there is an exception at this lineList<WorkflowStatus>workflows=newList<WorkflowStatus>();// ...}
We have the below method to get the status of all workflows
Exception:
Full Stack Trace:
Http Request:
GET http://localhost:7071/workflow/status/all
The text was updated successfully, but these errors were encountered: