mirror of
https://github.com/jetty/jetty.project.git
synced 2025-02-23 16:05:00 +00:00
HttpInput was using a bounded ArrayQueue with max capacity 64. The queue was overflowing if there were more than 64 reads within the flow control window capacity. Fixed by replacing the ArrayQueue with ArrayDeque, which is unbounded.