Make internal/worker/worker.go read-only

Since workers don't communicate anything back to the pool with the channel,
there is no need to have it bidirectional.
This commit is contained in:
jvoisin 2024-02-28 23:44:12 +01:00 committed by Frédéric Guillot
parent 48fa64f8ec
commit 5e5cb056c5
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ type Worker struct {
}
// Run wait for a job and refresh the given feed.
func (w *Worker) Run(c chan model.Job) {
func (w *Worker) Run(c <-chan model.Job) {
slog.Debug("Worker started",
slog.Int("worker_id", w.id),
)