Skip to content

Commit

Permalink
Netty deprecated EpollChannelOption#TCP_FASTOPEN in favor of ChannelO…
Browse files Browse the repository at this point in the history
…ption#TCP_FASTOPEN
  • Loading branch information
mkurz committed Dec 29, 2021
1 parent fcef82f commit c4c48f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ play.server {
child {
SO_KEEPALIVE = true
TCP_NODELAY = true
TCP_FASTOPEN = 3
TCP_FASTOPEN_CONNECT = true
"io.netty.channel.unix.UnixChannelOption#SO_REUSEPORT" = false
"io.netty.channel.epoll.EpollChannelOption#TCP_FASTOPEN" = 3
bar = "xyz"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
[DEBUG] play.core.server.NettyServer - Setting Netty channel option io.netty.channel.unix.UnixChannelOption#SO_REUSEPORT to true at bootstrapping
[DEBUG] play.core.server.NettyServer - Setting Netty channel option SO_BACKLOG to 256 at bootstrapping
[DEBUG] play.core.server.NettyServer - Setting Netty channel option io.netty.channel.epoll.EpollChannelOption#TCP_CORK to true at bootstrapping
[DEBUG] play.core.server.NettyServer - Setting Netty channel option TCP_FASTOPEN to 3
[DEBUG] play.core.server.NettyServer - Setting Netty channel option TCP_FASTOPEN_CONNECT to true
[DEBUG] play.core.server.NettyServer - Setting Netty channel option TCP_NODELAY to true
[DEBUG] play.core.server.NettyServer - Setting Netty channel option SO_KEEPALIVE to true
[WARN] play.core.server.NettyServer - Ignoring unknown Netty channel option: bar
[WARN] play.core.server.NettyServer - Valid values can be found at http://netty.io/4.1/api/io/netty/channel/ChannelOption.html
[DEBUG] play.core.server.NettyServer - Setting Netty channel option io.netty.channel.epoll.EpollChannelOption#TCP_FASTOPEN to 3
[DEBUG] play.core.server.NettyServer - Setting Netty channel option io.netty.channel.unix.UnixChannelOption#SO_REUSEPORT to false

0 comments on commit c4c48f0

Please sign in to comment.