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
REUSE_PORT solves your problem, try this code when you start server
val config =Configuration()
config.setPort(port)
val sockConfig =SocketConfig()
sockConfig.setReuseAddress(true)
config.setSocketConfig(sockConfig)
val server =SocketIOServer(config)
Exception in thread "main" io.netty.channel.unix.Errors$NativeIoException: bind(..) failed: Address already in use
The issue happens from 1.x to latest 2.0.11.
Thanks
The text was updated successfully, but these errors were encountered: