Disable epoll by default due to timeouts its causing

Anyone who wants to continue testing epoll for us may do so with `-Dbungee.epoll=true`
This commit is contained in:
Thinkofdeath 2014-08-21 08:11:11 +01:00
parent 41ccf3f9d3
commit 86c5e321f2

View File

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