diff options
Diffstat (limited to 'pkg/worker_watcher/container/vec.go')
-rw-r--r-- | pkg/worker_watcher/container/vec.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/pkg/worker_watcher/container/vec.go b/pkg/worker_watcher/container/vec.go index 239b01c7..565b1b69 100644 --- a/pkg/worker_watcher/container/vec.go +++ b/pkg/worker_watcher/container/vec.go @@ -35,9 +35,7 @@ func (v *Vec) Dequeue() (worker.BaseProcess, bool) { return nil, true } - w := <-v.workers - - return w, false + return <-v.workers, false } func (v *Vec) Destroy() { |