Author: toad
Date: 2008-02-16 14:25:11 +0000 (Sat, 16 Feb 2008)
New Revision: 17999
Modified:
trunk/freenet/src/freenet/client/async/ClientRequestScheduler.java
Log:
15 second cooldown for now to shake the bugs out
Modified: trunk/freenet/src/freenet/client/async/ClientRequestScheduler.java
===================================================================
--- trunk/freenet/src/freenet/client/async/ClientRequestScheduler.java
2008-02-16 14:18:19 UTC (rev 17998)
+++ trunk/freenet/src/freenet/client/async/ClientRequestScheduler.java
2008-02-16 14:25:11 UTC (rev 17999)
@@ -100,7 +100,7 @@
private final RequestCooldownQueue cooldownQueue;
/** Once a key has been requested a few times, don't request it again
for 30 minutes.
* To do so would be pointless given ULPRs, and just waste bandwidth. */
- public static final long COOLDOWN_PERIOD = 2*60*1000;
+ public static final long COOLDOWN_PERIOD = 15*1000;
/** The number of times a key can be requested before triggering the
cooldown period. */
public static final int COOLDOWN_RETRIES = 3;