* Floodfills: Increase max to 28 (was 15) and min to 20 (was 10)

This commit is contained in:
zzz
2010-02-13 12:02:33 +00:00
parent 4591f77928
commit bd068058c3
3 changed files with 6 additions and 3 deletions

View File

@ -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.

View File

@ -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 = "";

View File

@ -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) {