Merge pull request #19470 from gmarek/kubemark-performance

Shorten the sleep amount in the fake docker client
This commit is contained in:
Mike Danese 2016-01-14 11:55:24 -08:00
commit 41df8749a8

View File

@ -257,7 +257,7 @@ func (f *FakeDockerClient) CreateContainer(c docker.CreateContainerOptions) (*do
container := docker.Container{ID: name, Name: name, Config: c.Config}
containerCopy := container
f.ContainerMap[name] = &containerCopy
f.normalSleep(200, 50, 50)
f.normalSleep(100, 25, 25)
return &container, nil
}