From 7548a627e580d915d7b4f4123b97b68e28893518 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Mon, 5 Jan 2026 02:12:34 +0900 Subject: [PATCH] internal/pkg: delete stale done channels There is no reason to keep these around. Signed-off-by: Ophestra --- internal/pkg/pkg.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/pkg/pkg.go b/internal/pkg/pkg.go index 8b07786..b880b49 100644 --- a/internal/pkg/pkg.go +++ b/internal/pkg/pkg.go @@ -293,6 +293,7 @@ func (c *Cache) finaliseIdent( } else { c.ident[*id] = *checksum } + delete(c.identPending, *id) c.identMu.Unlock() close(done)