diff --git a/transport/src/main/java/io/netty/channel/pool/FixedChannelPool.java b/transport/src/main/java/io/netty/channel/pool/FixedChannelPool.java index ddafebb8d3..5c08ac6260 100644 --- a/transport/src/main/java/io/netty/channel/pool/FixedChannelPool.java +++ b/transport/src/main/java/io/netty/channel/pool/FixedChannelPool.java @@ -96,12 +96,7 @@ public final class FixedChannelPool extends SimpleChannelPool { */ public FixedChannelPool(Bootstrap bootstrap, ChannelPoolHandler handler, int maxConnections, int maxPendingAcquires) { - super(bootstrap, handler); - executor = bootstrap.group().next(); - timeoutTask = null; - acquireTimeoutNanos = -1; - this.maxConnections = maxConnections; - this.maxPendingAcquires = maxPendingAcquires; + this(bootstrap, handler, ChannelHealthChecker.ACTIVE, null, -1, maxConnections, maxPendingAcquires); } /**