diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-04-19 19:49:01 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-04-19 19:49:01 +0900 |
| commit | a4a54a4a4d738f560f5b941d378791390603c2ba (patch) | |
| tree | 118d9d50b74b28cb1d9e554d67806b8f9d3bbc77 /cmd/mbf | |
| parent | 04a344aac66d10b3147139ca9c758a639d7235ea (diff) | |
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>
Diffstat (limited to 'cmd/mbf')
| -rw-r--r-- | cmd/mbf/main.go | 9 |
1 files changed, 1 insertions, 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 |
