Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion clients/naming_client/naming_cache/subscribe_callback.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ func (ed *SubscribeCallback) AddCallbackFunc(serviceName string, clusters string
var funcSlice []*func(services []model.Instance, err error)
old, ok := ed.callbackFuncMap.Get(key)
if ok {
funcSlice = append(funcSlice, old.([]*func(services []model.Instance, err error))...)
for _, funcItem := range old.([]*func(services []model.Instance, err error)) {
if funcItem != callbackFunc {
funcSlice = append(funcSlice, funcItem)
}
}
}
funcSlice = append(funcSlice, callbackFunc)
ed.callbackFuncMap.Set(key, funcSlice)
Expand All @@ -73,6 +77,9 @@ func (ed *SubscribeCallback) ServiceChanged(cacheKey string, service *model.Serv
funcs, ok := ed.callbackFuncMap.Get(cacheKey)
if ok {
for _, funcItem := range funcs.([]*func(services []model.Instance, err error)) {
if *funcItem == nil {
continue
}
(*funcItem)(service.Hosts, nil)
}
}
Expand Down