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
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
neoppod
Commits
9031ef52
Commit
9031ef52
authored
Jul 14, 2020
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
60033406
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
go/zodb/storage/zeo/zrpc.go
go/zodb/storage/zeo/zrpc.go
+4
-4
No files found.
go/zodb/storage/zeo/zrpc.go
View file @
9031ef52
...
@@ -145,7 +145,7 @@ func (zl *zLink) Close() error {
...
@@ -145,7 +145,7 @@ func (zl *zLink) Close() error {
// serveRecv handles receives from underlying link and dispatches them to calls
// serveRecv handles receives from underlying link and dispatches them to calls
// waiting for results, to notify and serve handlers
.
// waiting for results, to notify and serve handlers.
func
(
zl
*
zLink
)
serveRecv
()
{
func
(
zl
*
zLink
)
serveRecv
()
{
defer
zl
.
serveWg
.
Done
()
defer
zl
.
serveWg
.
Done
()
for
{
for
{
...
@@ -216,7 +216,7 @@ func (zl *zLink) serveRecv1(pkb *pktBuf) error {
...
@@ -216,7 +216,7 @@ func (zl *zLink) serveRecv1(pkb *pktBuf) error {
if
f
==
nil
{
if
f
==
nil
{
// disconnect on call to unknown method
// disconnect on call to unknown method
err
=
fmt
.
Errorf
(
"unknown method %q"
,
m
.
method
)
err
=
fmt
.
Errorf
(
"unknown method %q"
,
m
.
method
)
//
XXX
error -> exception
//
TODO
error -> exception
zl
.
reply
(
m
.
msgid
,
err
)
// ignore error
zl
.
reply
(
m
.
msgid
,
err
)
// ignore error
return
fmt
.
Errorf
(
".%d: %s"
,
m
.
msgid
,
err
)
return
fmt
.
Errorf
(
".%d: %s"
,
m
.
msgid
,
err
)
}
}
...
@@ -225,7 +225,7 @@ func (zl *zLink) serveRecv1(pkb *pktBuf) error {
...
@@ -225,7 +225,7 @@ func (zl *zLink) serveRecv1(pkb *pktBuf) error {
defer
zl
.
serveWg
.
Done
()
defer
zl
.
serveWg
.
Done
()
res
:=
f
(
zl
.
serveCtx
,
m
.
arg
)
res
:=
f
(
zl
.
serveCtx
,
m
.
arg
)
//
XXX
error -> exception
//
TODO
error -> exception
// send result back
// send result back
err
:=
zl
.
reply
(
m
.
msgid
,
res
)
err
:=
zl
.
reply
(
m
.
msgid
,
res
)
...
@@ -378,7 +378,7 @@ func (zl *zLink) sendPkt(pkb *pktBuf) error {
...
@@ -378,7 +378,7 @@ func (zl *zLink) sendPkt(pkb *pktBuf) error {
// recvPkt receives 1 raw ZEO packet.
// recvPkt receives 1 raw ZEO packet.
//
//
// the packet returned contains both header and payload.
// the packet returned contains both header and payload.
// XXX almost du
m
p from NEO.
// XXX almost dup from NEO.
func
(
zl
*
zLink
)
recvPkt
()
(
*
pktBuf
,
error
)
{
func
(
zl
*
zLink
)
recvPkt
()
(
*
pktBuf
,
error
)
{
pkb
:=
allocPkb
()
pkb
:=
allocPkb
()
data
:=
pkb
.
data
[
:
cap
(
pkb
.
data
)]
data
:=
pkb
.
data
[
:
cap
(
pkb
.
data
)]
...
...
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