Reputation: 119
I have a Logic App that calls different Azure Functions through generic webhook.
Till yesterday, the Logic App was working fine but today, I am noticing logic app is failing randomly. Some runs fails on function "A" and some runs fails on function "B". Error message of failure is same for every run. Following is the error message.
REASON
Code
BadRequest
Message
Http request failed: the timeout was reached.
I have also tried by cloning the Logic App but error is still there.
Upvotes: 0
Views: 2733
Reputation: 43203
There was an issue with a new deployment of Azure Functions that caused a small number of Logic App customers to run into timeouts. The build has been reverted, so you should no longer be seeing this issue.
Note that if your Function App is continually running (i.e. never idling), you may need to restart the Function App to mitigate the issue.
Upvotes: 1
Reputation: 2063
Azure Logic App requires that the CORS functionnality of the Azure Function to be configured.
You should check this link : Azure Functions Settings.
Upvotes: 0