NetDB: Increase flood thottle time

This commit is contained in:
zzz
2023-02-11 06:34:04 -05:00
parent d6c6b5e092
commit cb90139342

View File

@@ -14,7 +14,7 @@ import net.i2p.util.SimpleTimer2;
class FloodThrottler {
private final ObjectCounter<Hash> counter;
private static final int MAX_FLOODS = 3;
private static final long CLEAN_TIME = 60*1000;
private static final long CLEAN_TIME = 90*1000;
FloodThrottler() {
this.counter = new ObjectCounter<Hash>();