diff --git a/netty/src/main/java/io/grpc/netty/Utils.java b/netty/src/main/java/io/grpc/netty/Utils.java index 6fb6e49779..df8d7a51cc 100644 --- a/netty/src/main/java/io/grpc/netty/Utils.java +++ b/netty/src/main/java/io/grpc/netty/Utils.java @@ -91,7 +91,7 @@ class Utils { @Override public ByteBufAllocator create() { if (Boolean.parseBoolean( - System.getProperty("io.grpc.netty.useCustomAllocator", "true"))) { + System.getProperty("io.grpc.netty.useCustomAllocator", "false"))) { int maxOrder; if (System.getProperty("io.netty.allocator.maxOrder") == null) { // See the implementation of PooledByteBufAllocator. DEFAULT_MAX_ORDER in there is