2004-10-16 jrandom
* Increased the default minimum tunnel test time to 5 seconds, since we still see the occational message processing time spike to 2 seconds. * Update the SimpleTimer to allow rescheduling a task thats already queued (useful for the new streaming lib).
This commit is contained in:
@ -15,9 +15,9 @@ import net.i2p.CoreVersion;
|
||||
*
|
||||
*/
|
||||
public class RouterVersion {
|
||||
public final static String ID = "$Revision: 1.55 $ $Date: 2004/10/14 20:20:12 $";
|
||||
public final static String ID = "$Revision: 1.56 $ $Date: 2004/10/15 12:39:18 $";
|
||||
public final static String VERSION = "0.4.1.2";
|
||||
public final static long BUILD = 5;
|
||||
public final static long BUILD = 6;
|
||||
public static void main(String args[]) {
|
||||
System.out.println("I2P Router version: " + VERSION);
|
||||
System.out.println("Router ID: " + RouterVersion.ID);
|
||||
|
@ -74,7 +74,7 @@ class TestTunnelJob extends JobImpl {
|
||||
}
|
||||
|
||||
private final static long DEFAULT_TEST_TIMEOUT = 10*1000; // 10 seconds for a test to succeed
|
||||
private final static long DEFAULT_MINIMUM_TEST_TIMEOUT = 2*1000; // 2 second min
|
||||
private final static long DEFAULT_MINIMUM_TEST_TIMEOUT = 5*1000; // 5 second min
|
||||
private final static int TEST_PRIORITY = 100;
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user