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()
|
defer stop()
|
||||||
|
|
||||||
var cm cache
|
var cm cache
|
||||||
defer func() {
|
defer func() { cm.Close() }()
|
||||||
cm.Close()
|
|
||||||
|
|
||||||
if r := recover(); r != nil {
|
|
||||||
fmt.Println(r)
|
|
||||||
log.Fatal("consider scrubbing the on-disk cache")
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
|
|
||||||
var (
|
var (
|
||||||
flagQuiet bool
|
flagQuiet bool
|
||||||
|
|||||||
Reference in New Issue
Block a user