Author: toad
Date: 2008-02-18 11:36:33 +0000 (Mon, 18 Feb 2008)
New Revision: 18031

Modified:
   trunk/freenet/src/freenet/client/async/ClientRequestScheduler.java
Log:
Increase cooldown period to 5 minutes.

Modified: trunk/freenet/src/freenet/client/async/ClientRequestScheduler.java
===================================================================
--- trunk/freenet/src/freenet/client/async/ClientRequestScheduler.java  
2008-02-18 11:35:01 UTC (rev 18030)
+++ trunk/freenet/src/freenet/client/async/ClientRequestScheduler.java  
2008-02-18 11:36:33 UTC (rev 18031)
@@ -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 = 15*1000;
+       public static final long COOLDOWN_PERIOD = 5*60*1000;
        /** The number of times a key can be requested before triggering the 
cooldown period. */
        public static final int COOLDOWN_RETRIES = 3;



Reply via email to