mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-11-08 22:33:22 +00:00
`test/integration/kubelet` was failing staticcheck because it was calling `t.Fatal` from the non-main Go routine. Address this by sending errors causing t.Fatal back to a channel. The main thread can then iterate through this channel, and call t.Fatal if there are any errors in the channel.