Community
Participate
Working Groups
In Jetty 7.5.2 a mechanism to detect non-progressing connection was added to AsyncHttpConnection, mostly to avoid spin loops. However, it is possible that from time to time a call to handle() makes no progress, even though previous or successive calls to handle() do make progress. The counter for _total_no_progress is only incremented and never reset, and this, after a while, causes the connection to be closed even if it is working properly.
The counter for _total_no_progress is now reset when some progress is made.