Update Netty and enable EPoll transport.

This commit is contained in:
md_5 2016-01-16 11:37:17 +11:00
parent 1182affa09
commit f5552963b8
2 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@
<properties>
<build.number>unknown</build.number>
<netty.version>4.0.31.Final</netty.version>
<netty.version>4.0.33.Final</netty.version>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

View File

@ -81,7 +81,7 @@ public class PipelineUtils
static
{
if ( !PlatformDependent.isWindows() && Boolean.parseBoolean( System.getProperty( "bungee.epoll", "false" ) ) )
if ( !PlatformDependent.isWindows() && Boolean.parseBoolean( System.getProperty( "bungee.epoll", "true" ) ) )
{
ProxyServer.getInstance().getLogger().info( "Not on Windows, attempting to use enhanced EpollEventLoop" );