From c81f864de340909a4caf999d2c846600bbbf0a19 Mon Sep 17 00:00:00 2001 From: jrandom Date: Fri, 9 Jul 2004 05:22:29 +0000 Subject: [PATCH] reduce the throttle threshold from 5s lag to 2s lag --- router/java/src/net/i2p/router/RouterThrottleImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/router/java/src/net/i2p/router/RouterThrottleImpl.java b/router/java/src/net/i2p/router/RouterThrottleImpl.java index 6cbc28468..dde632dc3 100644 --- a/router/java/src/net/i2p/router/RouterThrottleImpl.java +++ b/router/java/src/net/i2p/router/RouterThrottleImpl.java @@ -14,11 +14,11 @@ class RouterThrottleImpl implements RouterThrottle { private Log _log; /** - * arbitrary hard limit of 5 seconds - if its taking this long to get + * arbitrary hard limit of 2 seconds - if its taking this long to get * to a job, we're congested. * */ - private static int JOB_LAG_LIMIT = 5000; + private static int JOB_LAG_LIMIT = 2000; public RouterThrottleImpl(RouterContext context) { _context = context;