I have updated my Azure Functions from 3 to 4 version with .Net 6.0. After this change the function that processes the queue is not triggering when a new item is added. Locally the function works fine, but in Azure the function doesn't work, and no error is logged. I'm using Visual Studio 2022 to develop the functions with C#. I'm using Azure Queue Storage. Has anyone had to "fight" with that?
This is the class definition definition:
[FunctionName("ProcessQueueItems")] public static void Run([QueueTrigger("sales-dev", Connection = "AzureWebJobsStorage")] string myQueueItem, ILogger logger, ExecutionContext context)
I tried to deploy the function in a new Function App resource, but the problem persists. I need to the function app processes the queue items.



