[#1898] No call fireExceptionCaught but just fail the write promise

This commit is contained in:
Norman Maurer 2013-10-08 06:39:21 +02:00
parent cd2eaebd92
commit 23998048b1

View File

@ -239,17 +239,6 @@ public class ChunkedWriteHandler
}
currentWrite.fail(t);
if (ctx.executor().inEventLoop()) {
ctx.fireExceptionCaught(t);
} else {
ctx.executor().execute(new Runnable() {
@Override
public void run() {
ctx.fireExceptionCaught(t);
}
});
}
closeInput(chunks);
break;
}