Commit 13e69c0e authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent d5010b3a
...@@ -94,7 +94,7 @@ func (z *zeo) _Load(ctx context.Context, xid zodb.Xid) (*mem.Buf, zodb.Tid, erro ...@@ -94,7 +94,7 @@ func (z *zeo) _Load(ctx context.Context, xid zodb.Xid) (*mem.Buf, zodb.Tid, erro
// (data, serial, next_serial | None) // (data, serial, next_serial | None)
res, ok := xres.(pickle.Tuple) res, ok := xres.(pickle.Tuple)
if !ok || len(res) != 3 { if !ok || len(res) != 3 {
return nil, 0, rpc.ereplyf("got %#v; expect 3-tuple", res) return nil, 0, rpc.ereplyf("got %#v; expect 3-tuple", xres)
} }
data, ok1 := res[0].(string) data, ok1 := res[0].(string)
......
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