From 915b869e3fc6377be114c033763987de612c443c Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Fri, 6 Jan 2023 22:49:26 +0100 Subject: lint: add missing panic handlers in goroutines These issues were all reported by the new custom analyzer introduced in previous commit. Signed-off-by: Robin Jarry Tested-by: Bence Ferdinandy --- worker/imap/cache.go | 1 + 1 file changed, 1 insertion(+) (limited to 'worker/imap/cache.go') diff --git a/worker/imap/cache.go b/worker/imap/cache.go index b8673ae7..352ef313 100644 --- a/worker/imap/cache.go +++ b/worker/imap/cache.go @@ -145,6 +145,7 @@ func cacheDir() (string, error) { // cleanCache removes stale entries from the selected mailbox cachedb func (w *IMAPWorker) cleanCache(path string) { + defer log.PanicHandler() start := time.Now() var scanned, removed int iter := w.cache.NewIterator(nil, nil) -- cgit