mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 13:47:39 +03:00
fix: serversInfo: Fix strategy ph to use half of values
Without this fix 'ph' is essentially the same sa 'p2'.
This commit is contained in:
parent
147078d588
commit
bc9a37e550
1 changed files with 1 additions and 1 deletions
|
@ -204,7 +204,7 @@ func (serversInfo *ServersInfo) getOne() *ServerInfo {
|
|||
case LBStrategyFirst:
|
||||
candidate = 0
|
||||
case LBStrategyPH:
|
||||
candidate = rand.Intn(Min(Min(serversCount, 2), serversCount/2))
|
||||
candidate = rand.Intn(Max(Min(serversCount, 2), serversCount/2))
|
||||
case LBStrategyRandom:
|
||||
candidate = rand.Intn(serversCount)
|
||||
default:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue