netty5/transport/src
Norman Maurer dc6c6d956a [#5541] Ensure failing a Promise in SimpleChannelPool will not result in stack overflow.
Motivation:

We used Promise.setFailure(...) when fail a Promise in SimpleChannelPool. As this happens in multiple levels this can result in stackoverflow as setFailure(...) may throw an IllegalStateException which then again is propergated.

Modifications:

Use tryFailure(...)

Result:

No more possibility to cause a stack overflow when failing the promise.
2016-07-27 07:57:58 +02:00
..
main/java/io/netty [#5541] Ensure failing a Promise in SimpleChannelPool will not result in stack overflow. 2016-07-27 07:57:58 +02:00
test/java/io/netty Ability to run a task at the end of an eventloop iteration. 2016-07-12 10:22:15 +02:00