diff --git a/router/java/src/net/i2p/router/RouterThrottleImpl.java b/router/java/src/net/i2p/router/RouterThrottleImpl.java index 228c216f1c4af38870e111b8389a58272561bf48..00adcda785a44a9ac9b151b5556b42811d1ad7c9 100644 --- a/router/java/src/net/i2p/router/RouterThrottleImpl.java +++ b/router/java/src/net/i2p/router/RouterThrottleImpl.java @@ -34,7 +34,7 @@ class RouterThrottleImpl implements RouterThrottle { private static final int DEFAULT_MAX_TUNNELS = 2500; private static final String PROP_DEFAULT_KBPS_THROTTLE = "router.defaultKBpsThrottle"; private static final String PROP_MAX_PROCESSINGTIME = "router.defaultProcessingTimeThrottle"; - private static final int DEFAULT_MAX_PROCESSINGTIME = 1500; + private static final int DEFAULT_MAX_PROCESSINGTIME = 1250; /** tunnel acceptance */ public static final int TUNNEL_ACCEPT = 0; @@ -137,7 +137,7 @@ class RouterThrottleImpl implements RouterThrottle { _log.warn("Refusing tunnel request due to sendProcessingTime of " + avgSendProcessingTime + " ms over the last two minutes, which is too much."); } - setTunnelStatus("Rejecting tunnels: congestion"); + setTunnelStatus("Rejecting tunnels: High message delay"); return TunnelHistory.TUNNEL_REJECT_BANDWIDTH; } }