From ed8fd0bde2e46c12ea9e084b7f14bb45a8964538 Mon Sep 17 00:00:00 2001 From: mathiasdm <mathiasdm@mail.i2p> Date: Sat, 6 Jun 2009 17:42:33 +0000 Subject: [PATCH] Fixed bug causing congestion-avoidance code to not get executed. --- router/java/src/net/i2p/router/RouterThrottleImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/router/java/src/net/i2p/router/RouterThrottleImpl.java b/router/java/src/net/i2p/router/RouterThrottleImpl.java index 214753db25..4b3f683ea5 100644 --- a/router/java/src/net/i2p/router/RouterThrottleImpl.java +++ b/router/java/src/net/i2p/router/RouterThrottleImpl.java @@ -101,7 +101,7 @@ class RouterThrottleImpl implements RouterThrottle { // reject here if lag too high??? RateStat rs = _context.statManager().getRate("transport.sendProcessingTime"); - Rate r = null; + Rate r = rs.getRate(60*1000); //Reject tunnels if the time to process messages and send them is too large. Too much time implies congestion. if(r != null) { -- GitLab