What version of Azure function are you using? Versions 5+ support now this setting. You could try increase the time and/or add retries and maybe reduce the delay here: Task.WaitAll(taskArray, 20000, token);
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
My Azure function is receiving messages from EventHub as I can see in App Insights from the request count. However, not all requests are triggering the function. One weird thing though, while I am running my tasks synchronously, each request is fulfilled. When I run the tasks in the async method and use await Task.WhenAll(), some requests are not fulfilled. When I check the App Insights through operation id or invocation id, I can only find 1 request records. Any idea about the issue?
What version of Azure function are you using? Versions 5+ support now this setting. You could try increase the time and/or add retries and maybe reduce the delay here: Task.WaitAll(taskArray, 20000, token);