You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's caused by @Primary annotation added for default EventLoopGroup in DefaultEventLoopGroupRegistry.
Would it be possible to allow specifying something like @Primary(of = EventLoopGroup.class)? That would restrict injecting ExecutorService as a primary implementation.
The text was updated successfully, but these errors were encountered:
@jameskleeh#3868 I wouldn't expect Netty executor to be injected as a default one it probably can cause some performance problems if it's used to execute long-running tasks.
It's caused by
@Primary
annotation added for defaultEventLoopGroup
inDefaultEventLoopGroupRegistry
.Would it be possible to allow specifying something like
@Primary(of = EventLoopGroup.class)
? That would restrict injectingExecutorService
as a primary implementation.The text was updated successfully, but these errors were encountered: