mirror of
https://github.com/jetty/jetty.project.git
synced 2025-02-23 16:05:00 +00:00
* Fixes #7993 - HttpClient idleTimeout configuration being ignored/overridden The problem was that the timeout scheduling was not happening, because for TunnelRequest the timeouts were set in normalizeRequest(), which runs after the scheduling. Now a call to request.sent() is made also after normalizeRequest() so that the timeouts is scheduled (if it was not scheduled before). Signed-off-by: Simone Bordet <simone.bordet@gmail.com>