In testing Azure Functions locally, I am receiving this error.
"There was an error performing a read operation on the Blob Storage Secret Repository. Please ensure the 'AzureWebJobsStorage' connection string is valid."
I have Azure Blob Storage setup, including Storage Emulator and Storage Explorer. How can this be fixed?
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
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"
}
}
My Two cents.
I am trying to run a durable function on my local computer.
I was getting this error.
There was an error performing a read operation on the Blob Storage Secret Repository. Please ensure the 'AzureWebJobsStorage' connection string is valid
I looked at this answer from the github issue.
I completely deleted my folder the path for which is as follows
C:\Users\YourUserName\AppData\Local\Temp\Azurite
Now things are running fine again.
The folder looks like this.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With