Don'T call ChannelPipeline.fireExceptionCaught(..) for outbound events

This commit is contained in:
Norman Maurer 2013-02-11 07:19:40 +01:00
parent 0e341c9d72
commit ba71e3dcd0

View File

@ -118,7 +118,6 @@ public abstract class AbstractServerChannel extends AbstractChannel implements S
private void reject(ChannelPromise future) {
Exception cause = new UnsupportedOperationException();
future.setFailure(cause);
pipeline().fireExceptionCaught(cause);
}
}
}