* Floodfills: Increase max to 60 (was 28) and min to 45 (was 20)

This commit is contained in:
zzz
2010-03-08 00:44:40 +00:00
parent 26cf1922db
commit 4fae7a8cb6

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 = 20;
private static final int MAX_FF = 28;
private static final int MIN_FF = 45;
private static final int MAX_FF = 60;
private static final String PROP_FLOODFILL_PARTICIPANT = "router.floodfillParticipant";
public FloodfillMonitorJob(RouterContext context, FloodfillNetworkDatabaseFacade facade) {