I have an Visual Studio 2019 developed azure function (v3) that is deployed via devops pipeline when the webapp is deployed. It looks like this:
[FunctionName("GetUserCoordinatesFunction")]
public async Task Run([QueueTrigger("getusercoordinatesquery", Connection = "AzureWebJobsStorage")] GetUserCoordinatesQuery request, ILogger log)
{
This function works perfectly locally. If I emulate storage, it works... if I replace my storage string with my production storage connection string, it still works.
In other words, my app writes messages to the storage without any issue.
I've double checked, triple checked, quadruple checked my AzureWebJobsStorage string in Azure Function Configuration... everything is correct!
In production only, my function "GetUserCoordinatesFunction" does not detect messages in queue. Why? Please and thanks.
I tried this, but I'm on v3 and that didn't fix it Azure function implemented locally won't work in the cloud
