NetDB: Increase lookup throttle time

This commit is contained in:
zzz
2014-12-08 14:05:08 +00:00
parent 3dfcb2d5cc
commit 8420b6c715

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 = 60*1000;
private static final long CLEAN_TIME = 2*60*1000;
LookupThrottler() {
this.counter = new ObjectCounter<ReplyTunnel>();