Skip to content

Commit

Permalink
restore values
Browse files Browse the repository at this point in the history
  • Loading branch information
denisu committed Nov 6, 2024
1 parent 5c29089 commit f936194
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ pub const DNS_RECORD_TTL: u32 = 300;
pub const MAX_CONCURRENT_TASKS: usize = 100;
pub const MAX_RECORDS_TO_RETURN: usize = 32;

pub const PEER_RECHECK_INTERVAL: Duration = Duration::from_secs(30);
pub const PEER_RECHECK_INTERVAL: Duration = Duration::from_secs(900);
pub const PEER_RECHECK_BATCH_SIZE: usize = 512;

pub const PEER_TIMEOUT: Duration = Duration::from_secs(10);
pub const PEER_REACHABLE_TTL: Duration = Duration::from_secs(60);
pub const PEER_REACHABLE_TTL: Duration = Duration::from_secs(3600);
pub const PEER_UNREACHABLE_TTL: Duration = Duration::from_secs(86400);

0 comments on commit f936194

Please sign in to comment.