NetDB: Increase max age of RIs to reduce number refreshed after restart

This commit is contained in:
zzz
2014-09-24 13:57:26 +00:00
parent 10993cc6ef
commit 7ec02a1620

View File

@@ -32,7 +32,7 @@ class RefreshRoutersJob extends JobImpl {
* Don't go faster as this overloads the expl. OBEP / IBGW
*/
private final static long RERUN_DELAY_MS = 3*1000;
private final static long EXPIRE = 60*60*1000;
private final static long EXPIRE = 2*60*60*1000;
public RefreshRoutersJob(RouterContext ctx, FloodfillNetworkDatabaseFacade facade) {
super(ctx);