jetty.project/jetty-io
Simone Bordet 7e7b126847 Issue #362 (Very slow page load and missing resources when using HTTP/2 with Jetty 9.3.7)
The issue happened when the selector was both read ready and write
ready. In that case fillable() was called before completeWrite(),
causing the reader thread to read, parse, call the application which
performed a blocking write, thus never returning to call
completeWrite().

Inverting the calls (first completeWrite() then fillable()) solves
the issue because completeWrite() never calls application code.
2016-03-01 22:08:02 +01:00
..
src Issue #362 (Very slow page load and missing resources when using HTTP/2 with Jetty 9.3.7) 2016-03-01 22:08:02 +01:00
pom.xml Updating to version 9.3.8-SNAPSHOT 2016-01-15 17:15:14 -07:00