Getting Unexpected end of request content error in HTTPStarter based azure durable function app
We have created a HTTPStarter based azure durable function app. In this, we are getting 499 (Unexpected end of request content) error frequently between the successful executions.
When request is sent to the function app via webhook it results in error sometime where only 1 error log is available suggesting "Unexpected end of request content."
Function app is implemented in python and we have added the try-except block but no log is coming from there, so the exception is thrown by the function runtime as it is decoding it for the http-trigger.
FYI, The function app is running on a Linux Consumption plan.
Can anyone suggest the solution for this or any workaround to avoid the 499 error?