[freenet-cvs] r18292 - trunk/freenet/src/freenet/client/async

toad at freenetproject.org toad at freenetproject.org
Sat Mar 1 19:58:00 UTC 2008


Author: toad
Date: 2008-03-01 19:58:00 +0000 (Sat, 01 Mar 2008)
New Revision: 18292

Modified:
   trunk/freenet/src/freenet/client/async/RequestCooldownQueue.java
Log:
Increase minimum size of the cooldown queue to 128.

Modified: trunk/freenet/src/freenet/client/async/RequestCooldownQueue.java
===================================================================
--- trunk/freenet/src/freenet/client/async/RequestCooldownQueue.java	2008-03-01 18:41:40 UTC (rev 18291)
+++ trunk/freenet/src/freenet/client/async/RequestCooldownQueue.java	2008-03-01 19:58:00 UTC (rev 18292)
@@ -29,7 +29,7 @@
 	int endPtr;
 	static boolean logMINOR;
 	
-	static final int MIN_SIZE = 2;
+	static final int MIN_SIZE = 128;
 	
 	final long cooldownTime;
 




More information about the cvs mailing list