mirror of
https://github.com/k3s-io/kubernetes.git
synced 2026-07-19 15:39:17 +00:00
I've not been able to trigger the flake, but it could happen: - time.Sleep unblocks some background goroutines inside the synctest bubble. - Those goroutines do not actually run yet. - The main test checks for the result of those goroutines. Adding a `synctest.Wait` ensures that all background processing is complete because it waits for all goroutines to be durably blocked.