javaee / grizzly

Writing scalable server applications in the Java™ programming language has always been difficult. Before the advent of the Java New I/O API (NIO), thread management issues made it impossible for a server to scale to thousands of users. The Grizzly NIO framework has been designed to help developers to take advantage of the Java™ NIO API.
https://javaee.github.io/grizzly/
Other
222 stars 60 forks source link

Regression due to close listener order not respected #1968

Closed afelisatti closed 6 years ago

afelisatti commented 6 years ago

Changes for #1962 did not take into account the order in which the close listeners were registered. As a result the close reason could be missing when several filters where present (such as SSL). I'll be sending a PR to fix this.

afelisatti commented 6 years ago

Thanks, @rlubke. Any thoughts on when a 2.3.x release could be available to avoid this issue? I'd like to update GAHC to that version and wait for that release as well.

rlubke commented 6 years ago

I'll work on a release this week.

Sent from my iPhone

On Sep 6, 2017, at 09:50, Ana Felisatti notifications@github.com wrote:

Thanks, @rlubke. Any thoughts on when a 2.3.x release could be available to avoid this issue?

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or mute the thread.

afelisatti commented 6 years ago

Thank you!

rlubke commented 6 years ago

Release complete.

afelisatti commented 6 years ago

PR sent to GAHC (https://github.com/javaee/grizzly-ahc/pull/16)