Not sure how to re-open an issue from durabletask-dotnet, but @YunchuWang told me to re-open issue microsoft/durabletask-dotnet#475 here, if there is still a problem. So, because there is still a problem/question I re-open the issue here.
When running the code below I get a lot of warnings.
Code:
public async Task PurgeAllInstances(DurableTaskClient client, DateTime fromDate, DateTime toDate, IEnumerable<OrchestrationRuntimeStatus> runtimeStatus)
{
PurgeInstancesFilter filter = new PurgeInstancesFilter(fromDate, toDate, runtimeStatus);
PurgeInstanceOptions purgeInstanceOptions = new PurgeInstanceOptions();
PurgeResult purgeResult = await client.PurgeAllInstancesAsync(filter, purgeInstanceOptions, CancellationToken.None).ConfigureAwait(false);
}
Warning:
Severity level: Warning, Message: Error response [9c10a80f-58e6-4378-bcb8-035c7b056089] 404 The specified container does not exist. (00.0s)
Server:Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-request-id:b37ab98c-b01e-0009-1e8e-36c22c000000
x-ms-client-request-id:9c10a80f-58e6-4378-bcb8-035c7b056089
x-ms-version:2025-05-05
x-ms-error-code:ContainerNotFound
Date:Mon, 06 Oct 2025 06:59:59 GMT
Content-Length:225
Content-Type:application/xml
@YunchuWang ask me: "can you check in your azure function storage account if any blob containers is missing?". I can, I have no glue for which containers to look. So please let me know what containers should/shouldn't exist.