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 <noreply@openai.com> Closes tasks.lthn.sh/view.php?id=301
This commit is contained in:
parent
7aea06990d
commit
5ddae91f83
1 changed files with 1 additions and 2 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue