Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neoppod
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Levin Zimmermann
neoppod
Commits
eaea13a5
Commit
eaea13a5
authored
Feb 20, 2019
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
890384bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
7 deletions
+18
-7
go/zodb/open.go
go/zodb/open.go
+18
-7
No files found.
go/zodb/open.go
View file @
eaea13a5
...
...
@@ -278,14 +278,25 @@ func (s *storage) watcher() {
}
}
// deliver event to all watchers
// deliver event to all watchers.
// handle add/del watchq in the process.
deliver
:
for
watchq
:=
range
s
.
watchTab
{
select
{
case
req
:=
<-
s
.
watchReq
:
serveReq
(
req
)
case
watchq
<-
event
:
// ok
for
{
select
{
case
req
:=
<-
s
.
watchReq
:
serveReq
(
req
)
// if watchq was removed - we have to skip sending to it
// else try sending to current watchq once again.
_
,
present
:=
s
.
watchTab
[
watchq
]
if
!
present
{
continue
deliver
}
case
watchq
<-
event
:
// ok
continue
deliver
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment