Files
kubernetes/pkg/kubelet/pluginmanager/operationexecutor
Karan 330dcb43d7 Fix goroutine leak in pluginmanager test
Use a buffered channel for the operation start signal to prevent
goroutines from blocking indefinitely. When the test receiver times
out before all goroutines send their signal, an unbuffered channel
causes those goroutines to block forever on the send operation.
The buffer size is computed dynamically using max() to ensure it
always accommodates the maximum number of concurrent operations
any test may spawn.
2025-12-15 03:23:25 +05:30
..