Skip to content

Instantly share code, notes, and snippets.

@sscarduzio
Created June 25, 2013 09:02
Show Gist options
  • Save sscarduzio/5857043 to your computer and use it in GitHub Desktop.
Save sscarduzio/5857043 to your computer and use it in GitHub Desktop.
Stack trace from redgate with vert.x 2.0.0 CR2
An exceptionCaught() event was fired, and it reached at the tail of the pipeline. It usually means the last handler
in the pipeline did not handle the exception.
java.nio.channels.ClosedChannelException
at io.netty.channel.AbstractChannel$AbstractUnsafe.flushNow(AbstractChannel.java:683)
at io.netty.channel.AbstractChannel$AbstractUnsafe.flush(AbstractChannel.java:654)
at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:644)
at io.netty.channel.DefaultChannelPipeline$HeadHandler.write(DefaultChannelPipeline.java:1040)
at io.netty.channel.DefaultChannelHandlerContext.invokeWrite0(DefaultChannelHandlerContext.java:716)
at io.netty.channel.DefaultChannelHandlerContext.invokeWrite(DefaultChannelHandlerContext.java:700)
at io.netty.channel.DefaultChannelHandlerContext.write(DefaultChannelHandlerContext.java:692)
at org.vertx.java.core.impl.ExceptionDispatchHandler.write(ExceptionDispatchHandler.java:55)
at io.netty.channel.DefaultChannelHandlerContext.invokeWrite0(DefaultChannelHandlerContext.java:716)
at io.netty.channel.DefaultChannelHandlerContext.access$1600(DefaultChannelHandlerContext.java:27)
at io.netty.channel.DefaultChannelHandlerContext$18.run(DefaultChannelHandlerContext.java:705)
at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:353)
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:365)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment