@DBLJoey Appreciate your patience on this. I had a look at the backend logs for the above failure ( using the storage request ID). I see that the 404 error was for the Get Blob Properties
operation. This is a HEAD call that goes first and checks if the blob exists or not after that the actual blob operation happens. This is by-design. This being a warning and not a fatal error, it can be safely ignored. This warning will not affect the function execution / blob operation.
Note that there is no way to turn off the tracking for storage call as Storage SDK will be doing this for us for the most part and this cannot be turned off.
In case someone wants to disable all the Dependency Tracking then you can set the enableDependencyTracking to false for the Application Insights in case you don't need it. This can be done in the host.json file.
"enableDependencyTracking":"false"
Similar was discussed here too.
**
Please do not forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.