Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NioEventLoop.register(...) should offload to the EventLoop if not alr… (
netty#8612) Motivation: java.nio.channels.spi.AbstractSelectableChannel.register(...) need to obtain multiple locks during execution which may produce a long wait time if we currently select. This lead to multiple CI failures in the past. Modifications: Ensure the register call takes place on the EventLoop. Result: No more flacky CI test timeouts.
- Loading branch information