diff --git a/src/main/java/org/jboss/netty/handler/timeout/HashedWheelTimer.java b/src/main/java/org/jboss/netty/handler/timeout/HashedWheelTimer.java index b48bc89b87..6852684273 100644 --- a/src/main/java/org/jboss/netty/handler/timeout/HashedWheelTimer.java +++ b/src/main/java/org/jboss/netty/handler/timeout/HashedWheelTimer.java @@ -74,7 +74,7 @@ public class HashedWheelTimer implements Timer { this(Executors.defaultThreadFactory(), tickDuration, unit, ticksPerWheel); } - public HashedWheelTimer(ThreadFactory threadFactory) { + public HashedWheelTimer(ThreadFactory threadFactory) { this(threadFactory, 100, TimeUnit.MILLISECONDS, 512); // about 50 sec }