Commit 7b0f8038 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent ba09bb73
......@@ -319,6 +319,10 @@ func (δBtail *ΔBtail) Track(ctx context.Context, key Key, keyPresent bool, pat
// remember missing keys in track of leaf node (bucket or top-level ø tree)
if !keyPresent {
track.holes.Add(key)
} else {
if track.holes.Has(key) {
panicf("[%v] was previously requested to be tracked as ø", key)
}
}
......
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