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:
parent
41ccf3f9d3
commit
86c5e321f2
@ -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" );
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user