From b8c6b3c1593560b75a05662d9599379648e8c798 Mon Sep 17 00:00:00 2001 From: Michael Aspinwall Date: Tue, 10 Feb 2026 22:39:18 +0000 Subject: [PATCH] Pipe feature gates Kubernetes-commit: 718ebb6dfc7a5a64ee17821a0de177e3a1eb11f0 --- tools/cache/controller.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/cache/controller.go b/tools/cache/controller.go index 75d2ca979..3a4c4cb5c 100644 --- a/tools/cache/controller.go +++ b/tools/cache/controller.go @@ -852,6 +852,7 @@ func newQueueFIFO(logger klog.Logger, objectType any, clientState Store, transfo // store to an atomic fifo. if clientgofeaturegate.FeatureGates().Enabled(clientgofeaturegate.AtomicFIFO) { options.AtomicEvents = true + options.UnlockWhileProcessing = clientgofeaturegate.FeatureGates().Enabled(clientgofeaturegate.UnlockWhileProcessingFIFO) } else { options.KnownObjects = clientState }