Files
dnswatcher/internal/watcher
clawbot 27d2a69026
All checks were successful
check / check (push) Successful in 31s
fix: use context.Background() for watcher goroutine lifetime
The OnStart hook previously derived the watcher's context from startCtx
via context.WithoutCancel(). While WithoutCancel strips cancellation,
using context.Background() makes the intent explicit: the watcher's
monitoring loop must outlive the fx startup phase and is controlled
solely by the cancel func called in OnStop.

Closes #53
2026-03-01 14:57:02 -08:00
..