Tunnels: Increase default max tunnels

This commit is contained in:
zzz
2015-06-19 14:57:59 +00:00
parent 2499aad51d
commit 586defc802
3 changed files with 16 additions and 2 deletions

View File

@@ -29,7 +29,7 @@ class RouterThrottleImpl implements RouterThrottle {
// TODO reduce
private static final long JOB_LAG_LIMIT_TUNNEL = 500;
private static final String PROP_MAX_TUNNELS = "router.maxParticipatingTunnels";
private static final int DEFAULT_MAX_TUNNELS = 5000;
private static final int DEFAULT_MAX_TUNNELS = 10*1000;
private static final String PROP_MAX_PROCESSINGTIME = "router.defaultProcessingTimeThrottle";
private static final long DEFAULT_REJECT_STARTUP_TIME = 10*60*1000;
private static final String PROP_REJECT_STARTUP_TIME = "router.rejectStartupTime";

View File

@@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */
public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 6;
public final static long BUILD = 7;
/** for example "-test" */
public final static String EXTRA = "";