An Azure service that provides an event-driven serverless compute platform.
Hello OV, Joel,
Thanks for your question.
This error message is usually caused by a lack of available resources. Azure Functions have concurrent connection limits. If you're making many outbound calls, you might be hitting these limits.
Can you reuse HTTP clients instead of creating new ones for each request? You can try a simply retry logic in your code
See: