mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-22 16:41:29 +00:00
fix roundRobin
This commit is contained in:
parent
2fc4b31fcf
commit
9a2ab9b6a3
|
@ -2,6 +2,7 @@ package router
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
reflect "reflect"
|
||||||
sync "sync"
|
sync "sync"
|
||||||
|
|
||||||
"github.com/xtls/xray-core/common/dice"
|
"github.com/xtls/xray-core/common/dice"
|
||||||
|
@ -49,7 +50,7 @@ func (s *RoundRobinStrategy) PickOutbound(tags []string) string {
|
||||||
if len(tags) == 0 {
|
if len(tags) == 0 {
|
||||||
panic("0 tags")
|
panic("0 tags")
|
||||||
}
|
}
|
||||||
if s.roundRobin == nil {
|
if s.roundRobin == nil || !reflect.DeepEqual(s.roundRobin.tags, tags) {
|
||||||
s.roundRobin = NewRoundRobin(tags)
|
s.roundRobin = NewRoundRobin(tags)
|
||||||
}
|
}
|
||||||
tag := s.roundRobin.NextTag()
|
tag := s.roundRobin.NextTag()
|
||||||
|
|
Loading…
Reference in a new issue