Skip to content

Commit

Permalink
Remove obsolete revive nolint
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Kitt <[email protected]>
  • Loading branch information
skitt authored and tpantelis committed Jun 27, 2023
1 parent 1ce4934 commit 1971f06
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pkg/workqueue/queue.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 1971f06

Please sign in to comment.