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
This method doesn't belong to ChannelInboundHandler, and so NIO doesn't call it automatically. The fix is very simple, to remove the httpServer argument and use the locally-stored server reference.
The connection limiting as a whole is a little questionable, but I'll address that in a separate issue.
The text was updated successfully, but these errors were encountered:
In summary, the connection limiting issues are caused by these lines of code inside
HTTPRequestHandler
:This method doesn't belong to
ChannelInboundHandler
, and so NIO doesn't call it automatically. The fix is very simple, to remove thehttpServer
argument and use the locally-stored server reference.The connection limiting as a whole is a little questionable, but I'll address that in a separate issue.
The text was updated successfully, but these errors were encountered: