mirror of
https://github.com/i2p/i2p.i2p.git
synced 2026-08-24 07:29:55 +00:00
NetDB: Fix reversed conditional in ExpireLeasesJob.java
This commit is contained in:
@@ -37,7 +37,7 @@ class ExpireLeasesJob extends JobImpl {
|
||||
|
||||
private final static long RERUN_DELAY_MS = 1*60*1000;
|
||||
private static final int LIMIT_LEASES_FF = 1250;
|
||||
private static final int LIMIT_LEASES_CLIENT = SystemVersion.isSlow() ? 750 : 300;
|
||||
private static final int LIMIT_LEASES_CLIENT = SystemVersion.isSlow() ? 300 : 750;
|
||||
|
||||
public ExpireLeasesJob(RouterContext ctx, KademliaNetworkDatabaseFacade facade) {
|
||||
super(ctx);
|
||||
|
||||
Reference in New Issue
Block a user