Floodfills: Increase max to 100 (was 60) and min to 60 (was 45)

This commit is contained in:
zzz
2010-04-15 18:14:21 +00:00
parent 806a07acc5
commit 590d2e4639

View File

@@ -26,8 +26,8 @@ class FloodfillMonitorJob extends JobImpl {
private static final int REQUEUE_DELAY = 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 int MIN_FF = 45;
private static final int MAX_FF = 60;
private static final int MIN_FF = 60;
private static final int MAX_FF = 100;
private static final String PROP_FLOODFILL_PARTICIPANT = "router.floodfillParticipant";
public FloodfillMonitorJob(RouterContext context, FloodfillNetworkDatabaseFacade facade) {