diff --git a/pkg/workqueue/queue.go b/pkg/workqueue/queue.go index dcbbbc4b..0d35993e 100644 --- a/pkg/workqueue/queue.go +++ b/pkg/workqueue/queue.go @@ -76,7 +76,6 @@ func (q *queueType) Enqueue(obj interface{}) { func (q *queueType) Run(stopCh <-chan struct{}, process ProcessFunc) { go wait.Until(func() { - //nolint:revive // This is a while statement, we don't care about the empty block for q.processNextWorkItem(process) { } }, time.Second, stopCh)