Azure Functions: There was an error performing a read operation on the Blob Storage Secret Repository
Azure Functions: There was an error performing a read operation on the Blob Storage Secret Repository
Azure Functions: There was an error performing a read operation on the Blob Storage Secret Repository
Re: Azure Functions: There was an error performing a read operation on the Blob Storage Secret Repository
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"
}
}
```
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"
}
}
```