Skip to main content

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


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.



On Mon, 19 Jul 2021 at 18:03, John English <john.foreign@xxxxxxxxx> wrote:
I just saw the following error, which happened to a user yesterday
afternoon and was emailed to me automatically:

org.eclipse.jetty.io.RuntimeIOException: java.io.IOException:
java.util.concurrent.TimeoutException: Idle timeout expired: 30001/30000 ms
at org.eclipse.jetty.server.Request.extractFormParameters(Request.java:587)
at
org.eclipse.jetty.server.Request.extractContentParameters(Request.java:531)
at org.eclipse.jetty.server.Request.getParameters(Request.java:435)
at org.eclipse.jetty.server.Request.getParameter(Request.java:1075)
at ...

Can anyone tell me what this means and what might be causing it? (I'm
using Jetty 9.4.41.)

--
John English
_______________________________________________
jetty-users mailing list
jetty-users@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/jetty-users


--

Back to the top