From a4a54a4a4d738f560f5b941d378791390603c2ba Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sun, 19 Apr 2026 19:49:01 +0900 Subject: [PATCH] cmd/mbf: remove pointless recover This used to scrub the cache, and was not fully removed when that became nonviable. Signed-off-by: Ophestra --- cmd/mbf/main.go | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/cmd/mbf/main.go b/cmd/mbf/main.go index b8516baa..a667c3f4 100644 --- a/cmd/mbf/main.go +++ b/cmd/mbf/main.go @@ -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