netty: 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.
How to avoid this spam from the console?
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. io.netty.channel.StacklessClosedChannelException: null at io.netty.channel.AbstractChannel$AbstractUnsafe.write(Object, ChannelPromise)(Unknown Source) ~[netty-transport-4.1.80.Final.jar:4.1.80.Final]
About this issue
- Original URL
- State: open
- Created 2 years ago
- Reactions: 1
- Comments: 20 (9 by maintainers)
To avoid this spam from the console, you need to handle the exceptions raised in the last handler. 😂
Also, this is not Netty bug but rather a general question so consider using Stackoverflow for this.