mirror of
https://github.com/jetty/jetty.project.git
synced 2025-02-15 11:04:49 +00:00
Now exceptions thrown by fill() or flush() are stored in a field. Further fill() operations will rethrow the original exception rather than returning -1. Returning -1 to application was causing them to close() with a generic failure that was triggering the EOFException reported in this issue. Now applications see the original exception and can close() with the proper cause. Re-enabled HostnameVerificationTest that was reproducing this issue reliably but was @Disabled a while back and never re-enabled. Signed-off-by: Simone Bordet <simone.bordet@gmail.com>