Author: toad
Date: 2007-03-24 20:00:45 +0000 (Sat, 24 Mar 2007)
New Revision: 12338
Modified:
trunk/freenet/src/freenet/node/NodeStats.java
Log:
Reduce minimum threadlimit to 100
Modified: trunk/freenet/src/freenet/node/NodeStats.java
===================================================================
--- trunk/freenet/src/freenet/node/NodeStats.java 2007-03-24 19:59:32 UTC
(rev 12337)
+++ trunk/freenet/src/freenet/node/NodeStats.java 2007-03-24 20:00:45 UTC
(rev 12338)
@@ -159,7 +159,7 @@
}
public void set(int val) throws
InvalidConfigValueException {
if(val == get()) return;
- if(val < 250)
+ if(val < 100)
throw new
InvalidConfigValueException("This value is to low for that setting, increase
it!");
threadLimit = val;
}