Reload certs every 10 sec

This commit is contained in:
Frank Denis 2021-02-16 00:02:42 +01:00
parent 518341df37
commit ba663ef4d9
2 changed files with 3 additions and 1 deletions

View file

@ -4,3 +4,4 @@ pub const MAX_DNS_RESPONSE_LEN: usize = 4096;
pub const MIN_DNS_PACKET_LEN: usize = 17;
pub const STALE_IF_ERROR_SECS: u32 = 86400;
pub const STALE_WHILE_REVALIDATE_SECS: u32 = 60;
pub const CERTS_WATCH_DELAY_SECS: u32 = 10;

View file

@ -1,3 +1,4 @@
use crate::constants::CERTS_WATCH_DELAY_SECS;
use crate::errors::*;
use crate::{DoH, LocalExecutor};
@ -153,7 +154,7 @@ impl DoH {
}
Err(e) => eprintln!("TLS certificates error: {}", e),
}
tokio::time::sleep(Duration::from_secs(5)).await;
tokio::time::sleep(Duration::from_secs(CERTS_WATCH_DELAY_SECS.into())).await;
}
Ok::<_, DoHError>(())
};