Reputation: 359
In my logicapp I have configured to trigger a azure function , once the azure function triggered it does the job successfully but in logicapp flow i can see it failed with badrequest (below JPG)
Error :
{
"error": {
"code": "BadRequest",
"message": "Http request failed: the server did not respond within the timeout limit. Please see logic app limits at https://aka.ms/logic-apps-limits-and-config#http-limits."
}
}
More details of Azure function :
Upvotes: 1
Views: 1150
Reputation:
In your Error Image of Logic App, it shows a MS Link i.e., Azure Logic App Limits and Config.
It has been written that there are limits for both inbound and outbound request in Azure Logic App for the Http Requests:
Also, there is notes section on using the Inbound requests in a Logic App in long runs case.
Thanks to @AnandSowmithiran for suggesting the alternative solution to the user with this Jeff Hollan's medium article.
You can use a HTTP Webhook from the Logic App if it is long running if your total runtime exceeds than the default timeout of Logic app inbound request.
I have found a SO Thread on the same context of Azure Logic App Timeout when function app is triggering where User @HuryShen provided how to use the Webhook in an Azure Logic App with sample example.
Upvotes: 1