Skip to content

Commit

Permalink
Router: Revise lookup throttle times
Browse files Browse the repository at this point in the history
  • Loading branch information
eyedeekay committed Nov 7, 2023
1 parent 6ba84f7 commit 9c6d444
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ class LookupThrottler {
private final int MAX_LOOKUPS; // DEFAULT=20
private final long CLEAN_TIME; // DEFAULT=3*60*1000
LookupThrottler() {
MAX_LOOKUPS = 20;
CLEAN_TIME = 3*60*1000;
MAX_LOOKUPS = 14;
CLEAN_TIME = 2*60*1000;
this.counter = new ObjectCounter<ReplyTunnel>();
SimpleTimer2.getInstance().addPeriodicEvent(new Cleaner(), CLEAN_TIME);
}
Expand Down

0 comments on commit 9c6d444

Please sign in to comment.