Hallo everybody,
I want to create a blob trigger azure function and I have an error which I hope you can help me. After creating a blob trigger function I got this host.json file:
{
"version": "2.0",
"logging": {
"applicationInsights": {
"samplingSettings": {
"isEnabled": true,
"excludedTypes": "Request"
}
}
},
"extensionBundle": {
"id": "Microsoft.Azure.Functions.ExtensionBundle",
"version": "[3.*, 4.0.0)"
},
"concurrency": {
"dynamicConcurrencyEnabled": true,
"snapshotPersistenceEnabled": true
},
"extensions": {
"durableTask": {
"storageProvider": {
"type": "AzureStorage"
}
}
}
}
Now, I got the error "Property type is not allowed: Unfortunatelly I am not able to find something useful in the internet so I am hoping that you can help me.
With kind regards,
Gerald