Commit 463d9f67 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent aa443365
...@@ -140,7 +140,7 @@ func (r rpc) call(ctx context.Context, argv ...interface{}) (interface{}, error) ...@@ -140,7 +140,7 @@ func (r rpc) call(ctx context.Context, argv ...interface{}) (interface{}, error)
if r.zl.ver >= "5" { if r.zl.ver >= "5" {
// in ZEO5 exceptions are marked via flag // in ZEO5 exceptions are marked via flag
if (reply.flags & msgExcept != 0) { if reply.flags & msgExcept != 0 {
return nil, r.zeo5Error(reply.arg) return nil, r.zeo5Error(reply.arg)
} }
} else { } else {
......
Markdown is supported
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