remove sleep from mocksource container creation

This commit is contained in:
Bradley Cicenas
2017-03-08 23:26:29 +00:00
parent 7026193f8e
commit 1d176d46c4
2 changed files with 1 additions and 3 deletions

View File

@@ -29,12 +29,10 @@ func (cs *MockContainerSource) Init() {
rand.Seed(int64(time.Now().Nanosecond()))
for i := 0; i < 4; i++ {
time.Sleep(500 * time.Millisecond)
cs.makeContainer(3)
}
for i := 0; i < 16; i++ {
time.Sleep(500 * time.Millisecond)
cs.makeContainer(1)
}