Author: toad
Date: 2008-02-27 21:42:21 +0000 (Wed, 27 Feb 2008)
New Revision: 18193
Modified:
trunk/freenet/src/freenet/node/RequestScheduler.java
Log:
Increase cooldown period to 30 minutes.
Modified: trunk/freenet/src/freenet/node/RequestScheduler.java
===================================================================
--- trunk/freenet/src/freenet/node/RequestScheduler.java 2008-02-27
21:41:20 UTC (rev 18192)
+++ trunk/freenet/src/freenet/node/RequestScheduler.java 2008-02-27
21:42:21 UTC (rev 18193)
@@ -35,7 +35,7 @@
/** 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 = 5*60*1000;
+ public static final long COOLDOWN_PERIOD = 30*60*1000;
/** The number of times a key can be requested before triggering the
cooldown period.
* Note: If you don't want your requests to be subject to cooldown
(e.g. in fproxy), make
* your max retry count less than this (and more than -1). */