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;


Reply via email to