I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Unverified Commit b5a8d84d authored by idk's avatar idk
Browse files

NetDB: Fix reversed conditional in ExpireLeasesJob.java

parent 33622b91
No related branches found
No related tags found
No related merge requests found
Pipeline #2147 passed
...@@ -37,7 +37,7 @@ class ExpireLeasesJob extends JobImpl { ...@@ -37,7 +37,7 @@ class ExpireLeasesJob extends JobImpl {
private final static long RERUN_DELAY_MS = 1*60*1000; private final static long RERUN_DELAY_MS = 1*60*1000;
private static final int LIMIT_LEASES_FF = 1250; 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) { public ExpireLeasesJob(RouterContext ctx, KademliaNetworkDatabaseFacade facade) {
super(ctx); super(ctx);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment