[freenet-cvs] r12263 - trunk/freenet/src/freenet/node

nextgens at freenetproject.org nextgens at freenetproject.org
Wed Mar 21 23:27:34 UTC 2007


Author: nextgens
Date: 2007-03-21 23:27:33 +0000 (Wed, 21 Mar 2007)
New Revision: 12263

Modified:
   trunk/freenet/src/freenet/node/Node.java
Log:
ThreadLimit=300 seems to be more sensible than 750.

Modified: trunk/freenet/src/freenet/node/Node.java
===================================================================
--- trunk/freenet/src/freenet/node/Node.java	2007-03-21 23:10:38 UTC (rev 12262)
+++ trunk/freenet/src/freenet/node/Node.java	2007-03-21 23:27:33 UTC (rev 12263)
@@ -1042,7 +1042,7 @@
 			new TokenBucket(Math.max(ibwLimit*60, 32768*20), (1000L*1000L*1000L) / ibwLimit, 0);
 		
 		
-		nodeConfig.register("threadLimit", 750, sortOrder++, true, true, "Thread limit", "The node will try to limit its thread usage to the specified value, refusing new requests",
+		nodeConfig.register("threadLimit", 300, sortOrder++, true, true, "Thread limit", "The node will try to limit its thread usage to the specified value, refusing new requests",
 				new IntCallback() {
 					public int get() {
 						return threadLimit;




More information about the cvs mailing list