* Floodfills: Increase max to 28 (was 15) and min to 20 (was 10)
This commit is contained in:
@ -1,3 +1,6 @@
|
|||||||
|
2010-02-13 zzz
|
||||||
|
* Floodfills: Increase max to 28 (was 15) and min to 20 (was 10)
|
||||||
|
|
||||||
2010-02-12 sponge
|
2010-02-12 sponge
|
||||||
* org.mortbay.jetty.Server modified method to accept attributes for
|
* org.mortbay.jetty.Server modified method to accept attributes for
|
||||||
batch webapp launches via addWebApplications.
|
batch webapp launches via addWebApplications.
|
||||||
|
@ -18,7 +18,7 @@ public class RouterVersion {
|
|||||||
/** deprecated */
|
/** deprecated */
|
||||||
public final static String ID = "Monotone";
|
public final static String ID = "Monotone";
|
||||||
public final static String VERSION = CoreVersion.VERSION;
|
public final static String VERSION = CoreVersion.VERSION;
|
||||||
public final static long BUILD = 12;
|
public final static long BUILD = 13;
|
||||||
|
|
||||||
/** for example "-test" */
|
/** for example "-test" */
|
||||||
public final static String EXTRA = "";
|
public final static String EXTRA = "";
|
||||||
|
@ -26,8 +26,8 @@ class FloodfillMonitorJob extends JobImpl {
|
|||||||
private static final int REQUEUE_DELAY = 60*60*1000;
|
private static final int REQUEUE_DELAY = 60*60*1000;
|
||||||
private static final long MIN_UPTIME = 2*60*60*1000;
|
private static final long MIN_UPTIME = 2*60*60*1000;
|
||||||
private static final long MIN_CHANGE_DELAY = 6*60*60*1000;
|
private static final long MIN_CHANGE_DELAY = 6*60*60*1000;
|
||||||
private static final int MIN_FF = 10;
|
private static final int MIN_FF = 20;
|
||||||
private static final int MAX_FF = 15;
|
private static final int MAX_FF = 28;
|
||||||
private static final String PROP_FLOODFILL_PARTICIPANT = "router.floodfillParticipant";
|
private static final String PROP_FLOODFILL_PARTICIPANT = "router.floodfillParticipant";
|
||||||
|
|
||||||
public FloodfillMonitorJob(RouterContext context, FloodfillNetworkDatabaseFacade facade) {
|
public FloodfillMonitorJob(RouterContext context, FloodfillNetworkDatabaseFacade facade) {
|
||||||
|
Reference in New Issue
Block a user