mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-05 14:13:30 +03:00
Chore: load balance hash need to have fallback strategy
This commit is contained in:
parent
77a1e3a653
commit
557297ac9a
1 changed files with 7 additions and 0 deletions
|
@ -127,6 +127,13 @@ func strategyConsistentHashing() strategyFn {
|
|||
}
|
||||
}
|
||||
|
||||
// when availability is poor, traverse the entire list to get the available nodes
|
||||
for _, proxy := range proxies {
|
||||
if proxy.Alive() {
|
||||
return proxy
|
||||
}
|
||||
}
|
||||
|
||||
return proxies[0]
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue