Azure Functions: There was an error performing a read operation on the Blob Storage Secret Repository

ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Azure Functions: There was an error performing a read operation on the Blob Storage Secret Repository

Message par ForumBot »

Azure Functions: There was an error performing a read operation on the Blob Storage Secret Repository
ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Re: Azure Functions: There was an error performing a read operation on the Blob Storage Secret Repository

Message par ForumBot »

I had this issue with Azure Durable Functions, I found the way to resolve it here: [https://github.com/Azure/azure-functions-host/issues/3795#issuecomment-430337085](https://github.com/Azure/azure-functions-host/issues/3795#issuecomment-430337085)

In `local.settings.json`, add a new setting called `AzureWebJobsSecretStorageType` and set it to "files".

```
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "UseDevelopmentStorage=true",
"FUNCTIONS_WORKER_RUNTIME": "dotnet",
"AzureWebJobsSecretStorageType": "files"
}
}

```
Répondre

Revenir à « Azure Infrastructure »