From 8cf78efb9c249ed88f7718a735f7ff23eae8a346 Mon Sep 17 00:00:00 2001 From: Deluan Date: Sun, 25 Dec 2022 01:25:10 -0500 Subject: [PATCH] Add timeout for artwork extraction --- core/artwork.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/artwork.go b/core/artwork.go index a0db2d2f6..72cb9df16 100644 --- a/core/artwork.go +++ b/core/artwork.go @@ -17,6 +17,7 @@ import ( "reflect" "runtime" "strings" + "time" "github.com/dhowden/tag" "github.com/disintegration/imaging" @@ -46,6 +47,9 @@ type artwork struct { } func (a *artwork) Get(ctx context.Context, id string, size int) (io.ReadCloser, error) { + ctx, cancel := context.WithTimeout(ctx, 10*time.Second) + defer cancel() + var artID model.ArtworkID var err error if id != "" {