mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 13:47:39 +03:00
Avoid infinite blocking
Cover `offline_mode`.
This commit is contained in:
parent
1658efb256
commit
a089d171b4
1 changed files with 3 additions and 1 deletions
|
@ -245,7 +245,9 @@ func (serversInfo *ServersInfo) refresh(proxy *Proxy) (int, error) {
|
|||
}
|
||||
}(®isteredServers[i])
|
||||
}
|
||||
<-waitChannel
|
||||
if len(registeredServers) > 0 {
|
||||
<-waitChannel
|
||||
}
|
||||
serversInfo.Lock()
|
||||
sort.SliceStable(serversInfo.inner, func(i, j int) bool {
|
||||
return serversInfo.inner[i].initialRtt < serversInfo.inner[j].initialRtt
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue