Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] Concurrent timeout exception

On 20/07/2021 02:26, Greg Wilkins wrote:

It means that a request arrived and your app was trying to extract parameters from the body of the request, but blocked as the full body had not yet arrived.  After 30 seconds the data still had not arrived so the read timed out.

OK. So, this is down to a network problem rather than a webapp error? And presumably the user can just reload to resubmit the request and thereby recover from it? If so, I will be able to change the webapp to report it to the user as a "normal" error rather than treating it as an unexpected error (which sends me an alert email, saves a stack trace in the log and so on).

Thanks,
--
John English


Back to the top