Skip to content
Snippets Groups Projects
Commit c5e32420 authored by vito.he's avatar vito.he Committed by GitHub
Browse files

Merge pull request #216 from pantianying/add_action_del

Add: deal res.Action in refreshInvokers
parents 48b5d19f a5ed79da
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,7 @@ import (
"github.com/apache/dubbo-go/protocol"
"github.com/apache/dubbo-go/protocol/protocolwrapper"
"github.com/apache/dubbo-go/registry"
"github.com/apache/dubbo-go/remoting"
)
const (
......@@ -123,20 +124,19 @@ func (dir *registryDirectory) refreshInvokers(res *registry.ServiceEvent) {
url = nil
//TODO: router
}
switch res.Action {
case remoting.EventTypeAdd, remoting.EventTypeUpdate:
//dir.cacheService.EventTypeAdd(res.Path, dir.serviceTTL)
dir.cacheInvoker(url)
case remoting.EventTypeDel:
//dir.cacheService.EventTypeDel(res.Path, dir.serviceTTL)
dir.uncacheInvoker(url)
logger.Infof("selector delete service url{%s}", res.Service)
default:
return
}
}
//
//switch res.Action {
//case remoting.EventTypeAdd:
// //dir.cacheService.EventTypeAdd(res.Path, dir.serviceTTL)
// dir.cacheInvoker(&res.Service)
//case remoting.EventTypeDel:
// //dir.cacheService.EventTypeDel(res.Path, dir.serviceTTL)
// dir.uncacheInvoker(&res.Service)
// logger.Infof("selector delete service url{%s}", res.Service)
//default:
// return
//}
dir.cacheInvoker(url)
newInvokers := dir.toGroupInvokers()
dir.listenerLock.Lock()
defer dir.listenerLock.Unlock()
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment