Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2
22a7f0099
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Summer2022
22a7f0099
Commits
c5e32420
Commit
c5e32420
authored
5 years ago
by
vito.he
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #216 from pantianying/add_action_del
Add: deal res.Action in refreshInvokers
parents
48b5d19f
a5ed79da
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
registry/directory/directory.go
+13
-13
13 additions, 13 deletions
registry/directory/directory.go
with
13 additions
and
13 deletions
registry/directory/directory.go
+
13
−
13
View file @
c5e32420
...
...
@@ -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
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment