mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-30 15:05:27 +00:00
Fix data race in kubelet_test.go
Ensure that FakeDockerClient make a copy of the internal list and return it.
This commit is contained in:
parent
902e1196ac
commit
2fd87597a4
@ -139,7 +139,7 @@ func (f *FakeDockerClient) ListContainers(options docker.ListContainersOptions)
|
||||
if options.All {
|
||||
return append(f.ContainerList, f.ExitedContainerList...), err
|
||||
}
|
||||
return f.ContainerList, err
|
||||
return append([]docker.APIContainers{}, f.ContainerList...), err
|
||||
}
|
||||
|
||||
// InspectContainer is a test-spy implementation of DockerInterface.InspectContainer.
|
||||
|
Loading…
Reference in New Issue
Block a user