trx1

Results 4 comments of trx1

> That's great! Do you remember the article or the kernel config change you used? I am having freezes sometimes and I would like to try whatever you did. Try...

I also ran into this issue right after installing 5.2.1 on Windows. I was able to use the workaround provided by @rubienr

Here's what I have as a workaround: ```csharp var blobServiceClient = new BlobServiceClient(azureStorageConnectionString); if (!blobServiceClient.GetBlobContainers().Any(x => x.Name.Equals(containerName))) { blobServiceClient.CreateBlobContainer(containerName); } services.AddAzureClients(builder => { builder.AddClient(options => new BlobContainerClient(azureStorageConnectionString, containerName)); }); ```

Same here. Since it's been over a year with no action I guess I'll have to look for something different since I can't run it.