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:
Markus Linnala 2019-10-20 18:13:30 +03:00 committed by Frank Denis
parent 147078d588
commit bc9a37e550

View file

@ -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: