NetDB: Increase lookup throttle time

This reduces the max lookup rate
This commit is contained in:
zzz
2021-12-28 09:12:29 -05:00
parent db6914f555
commit c4b4b2d4b2

View File

@@ -21,7 +21,7 @@ class LookupThrottler {
private static final TunnelId DUMMY_ID = new TunnelId();
/** this seems like plenty */
private static final int MAX_LOOKUPS = 30;
private static final long CLEAN_TIME = 2*60*1000;
private static final long CLEAN_TIME = 3*60*1000;
LookupThrottler() {
this.counter = new ObjectCounter<ReplyTunnel>();