Commit 73108405 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent cd8396c3
...@@ -451,15 +451,9 @@ func diffB(ctx context.Context, a, b *Bucket) (δ map[Key]Value, err error) { ...@@ -451,15 +451,9 @@ func diffB(ctx context.Context, a, b *Bucket) (δ map[Key]Value, err error) {
panic("different buckets") panic("different buckets")
} }
err = a.PActivate(ctx) err = a.PActivate(ctx); if err != nil { return nil, err }
if err != nil {
return nil, err
}
defer a.PDeactivate() defer a.PDeactivate()
err = b.PActivate(ctx) err = b.PActivate(ctx); if err != nil { return nil, err }
if err != nil {
return nil, err
}
defer b.PDeactivate() defer b.PDeactivate()
//fmt.Println("> diffB", a.POid()) //fmt.Println("> diffB", a.POid())
......
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