diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-08-22 23:12:54 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-08-22 23:12:54 +0200 |
commit | 297a88845eec93f78304b5081a19b9e561652d92 (patch) | |
tree | 238027442b028b6e1091d117311cc1e601f46cc0 | |
parent | 76cbcdab3fd9cc6463f15be354b9264ccdb5aa27 (diff) | |
download | feed2imap-go-297a88845eec93f78304b5081a19b9e561652d92.tar.gz feed2imap-go-297a88845eec93f78304b5081a19b9e561652d92.tar.bz2 feed2imap-go-297a88845eec93f78304b5081a19b9e561652d92.zip |
print-cache should also unlock
-rw-r--r-- | internal/feed/cache.go | 6 | ||||
-rw-r--r-- | tools/print-cache/print-cache.go | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/internal/feed/cache.go b/internal/feed/cache.go index fa22139..bf64c4a 100644 --- a/internal/feed/cache.go +++ b/internal/feed/cache.go @@ -104,8 +104,12 @@ func storeCache(cache Cache, fileName string) error { writer.Flush() log.Printf("Stored cache to '%s'.", fileName) + return UnlockCache(cache) +} + +func UnlockCache(cache Cache) error { if cache.locked { - if err = cache.lock.Unlock(); err != nil { + if err := cache.lock.Unlock(); err != nil { return fmt.Errorf("Unlocking cache: %w", err) } } diff --git a/tools/print-cache/print-cache.go b/tools/print-cache/print-cache.go index d20963a..b21643e 100644 --- a/tools/print-cache/print-cache.go +++ b/tools/print-cache/print-cache.go @@ -27,6 +27,8 @@ func main() { log.Fatal(err) } + defer func() {_ = feed.UnlockCache(cache)}() + fmt.Printf("Cache version %d\n", cache.Version()) if feedId != "" { fmt.Print(cache.SpecificInfo(feedId)) |