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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user