Increased DNS client timeout from 1 second to 3. Added YGGv6 address to bootstrap peers. Incremented version.

This commit is contained in:
Revertron
2021-04-13 19:17:05 +02:00
parent 536515519a
commit 2b58d063dd
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -308,7 +308,7 @@ impl DnsClient for DnsNetworkClient {
Builder::new()
.name("DnsNetworkClient-timeout-thread".into())
.spawn(move || {
let timeout = Duration::seconds(1);
let timeout = Duration::seconds(3);
loop {
if let Ok(mut pending_queries) = pending_queries_lock.lock() {
let mut finished_queries = Vec::new();