From d3b89d5b410e5acaebea19d5b03805eb6eb154a1 Mon Sep 17 00:00:00 2001 From: Graham Date: Sun, 16 May 2021 13:16:21 +0100 Subject: [PATCH] Remove AUTO_READ option from the ServerChannel config Signed-off-by: Graham --- net/src/main/kotlin/org/openrs2/net/BootstrapFactory.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/net/src/main/kotlin/org/openrs2/net/BootstrapFactory.kt b/net/src/main/kotlin/org/openrs2/net/BootstrapFactory.kt index 848bc93a..063cd6cf 100644 --- a/net/src/main/kotlin/org/openrs2/net/BootstrapFactory.kt +++ b/net/src/main/kotlin/org/openrs2/net/BootstrapFactory.kt @@ -66,7 +66,6 @@ public class BootstrapFactory @Inject constructor( .group(group) .channel(channel) .option(ChannelOption.ALLOCATOR, alloc) - .option(ChannelOption.AUTO_READ, false) .childOption(ChannelOption.ALLOCATOR, alloc) .childOption(ChannelOption.AUTO_READ, false) .childOption(ChannelOption.TCP_NODELAY, true)