Is there any way to increase the request timeout for azure web apps?
If I delay the request by anything over 2 minutes or so the request fails with no error (blank page returned) or a vague 503 response.
public ActionResult Index()
{
System.Threading.Thread.Sleep(230000);
return View();
}
I have some long running requests that I need to run (uploading large files/large pdf conversion jobs) - is there any way around this? I'd prefer to avoid using VM hosting is possible. I've tried scaling the web app to basic or standard plans, but it doesn't seem to make any difference.
See Question&Answers more detail:os