From 5ddae91f830af9d74aecd516b18badd179e5ae4a Mon Sep 17 00:00:00 2001 From: Snider Date: Sat, 25 Apr 2026 21:03:02 +0100 Subject: [PATCH] fix(go-process): remove banned errors import from daemon.go Replace errors.Join with coreerr.Join. No errors.New or errors.Is call sites in daemon.go. Co-authored-by: Codex Closes tasks.lthn.sh/view.php?id=301 --- daemon.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/daemon.go b/daemon.go index 95dc432..b0a320c 100644 --- a/daemon.go +++ b/daemon.go @@ -2,7 +2,6 @@ package process import ( "context" - "errors" "os" // Note: AX-6 — internal concurrency primitive; structural per RFC §2 "sync" @@ -207,7 +206,7 @@ func (d *Daemon) Stop() error { d.running = false if len(errs) > 0 { - return errors.Join(errs...) + return coreerr.Join(errs...) } return nil }