diff --git a/netty/src/main/java/io/grpc/netty/Utils.java b/netty/src/main/java/io/grpc/netty/Utils.java index c5df0cb15d5..2e9c5c512d8 100644 --- a/netty/src/main/java/io/grpc/netty/Utils.java +++ b/netty/src/main/java/io/grpc/netty/Utils.java @@ -92,7 +92,7 @@ private static final class ByteBufAllocatorHolder { static { if (Boolean.parseBoolean( - System.getProperty("io.grpc.netty.useCustomAllocator", "false"))) { + System.getProperty("io.grpc.netty.useCustomAllocator", "true"))) { int maxOrder; if (System.getProperty("io.netty.allocator.maxOrder") == null) { // See the implementation of PooledByteBufAllocator. DEFAULT_MAX_ORDER in there is