From 8f2e17a6ba48e86ab90b5ec1e4fe9d37e9c2dfee Mon Sep 17 00:00:00 2001 From: Patrick Ohly Date: Mon, 19 May 2025 08:02:43 +0200 Subject: [PATCH] client-go workqueue: clarify parallel reenqueuing "Is allowed" does not exactly say what happens. Let's be more explicit. Kubernetes-commit: 772d010665141cf74d4a34af6da08ea4761ce1f8 --- util/workqueue/doc.go | 1 + 1 file changed, 1 insertion(+) diff --git a/util/workqueue/doc.go b/util/workqueue/doc.go index a76d830e..812301ba 100644 --- a/util/workqueue/doc.go +++ b/util/workqueue/doc.go @@ -22,5 +22,6 @@ limitations under the License. // will only be processed once. // - Multiple consumers and producers. In particular, it is allowed for an // item to be reenqueued while it is being processed. +// In this case it will be processed again. // - Shutdown notifications. package workqueue