1
0
forked from rosa/hakurei

cmd/mbf: remove pointless recover

This used to scrub the cache, and was not fully removed when that became nonviable.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-04-19 19:49:01 +09:00
parent 04a344aac6
commit a4a54a4a4d

View File

@@ -59,14 +59,7 @@ func main() {
defer stop()
var cm cache
defer func() {
cm.Close()
if r := recover(); r != nil {
fmt.Println(r)
log.Fatal("consider scrubbing the on-disk cache")
}
}()
defer func() { cm.Close() }()
var (
flagQuiet bool