client-go workqueue: clarify parallel reenqueuing

"Is allowed" does not exactly say what happens. Let's be more explicit.

Kubernetes-commit: 772d010665141cf74d4a34af6da08ea4761ce1f8
This commit is contained in:
Patrick Ohly 2025-05-19 08:02:43 +02:00 committed by Kubernetes Publisher
parent e9c99fd4fa
commit 8f2e17a6ba

View File

@ -22,5 +22,6 @@ limitations under the License.
// will only be processed once. // will only be processed once.
// - Multiple consumers and producers. In particular, it is allowed for an // - Multiple consumers and producers. In particular, it is allowed for an
// item to be reenqueued while it is being processed. // item to be reenqueued while it is being processed.
// In this case it will be processed again.
// - Shutdown notifications. // - Shutdown notifications.
package workqueue package workqueue