Fix later sending of exceptionCaught events. See #187 and #140

This commit is contained in:
Norman Maurer 2012-02-25 14:30:10 +01:00
parent 04a6ff92af
commit c4a437e16b

View File

@ -481,7 +481,7 @@ public final class Channels {
* the specified {@link Channel} once the io-thread runs again.
*/
public static void fireExceptionCaughtLater(Channel channel, Throwable cause) {
channel.getPipeline().sendUpstream(
channel.getPipeline().sendUpstreamLater(
new DefaultExceptionEvent(channel, cause));
}