We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 43cede9 + c43bcad commit 2a3194bCopy full SHA for 2a3194b
src/main/java/com/rabbitmq/stream/impl/Utils.java
@@ -20,7 +20,6 @@
20
import com.rabbitmq.stream.*;
21
import com.rabbitmq.stream.impl.Client.ClientParameters;
22
import io.netty.buffer.ByteBufAllocator;
23
-import io.netty.buffer.PooledByteBufAllocator;
24
import io.netty.channel.ConnectTimeoutException;
25
import io.netty.channel.EventLoopGroup;
26
import io.netty.channel.MultiThreadIoEventLoopGroup;
@@ -434,7 +433,8 @@ static EventLoopGroup eventLoopGroup() {
434
433
}
435
436
static ByteBufAllocator byteBufAllocator() {
437
- return PooledByteBufAllocator.DEFAULT;
+ return ByteBufAllocator.DEFAULT;
+ // return PooledByteBufAllocator.DEFAULT;
438
439
440
/*
0 commit comments