[#1722] ChunkedWriteHandler.doFlush(...) should not call fireExceptionCaught(..)

This commit is contained in:
Norman Maurer 2013-08-09 21:32:17 +02:00
parent 72395bf400
commit c1d787bff7

View File

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