Remove 30 second wait from start stop

I removed this awhile ago, but I'm not sure how it snuck back in.
The original issue was that the VM was getting a new IP, but the driver
was parsing the leases file and still picking the old IP.  So the only
way to fix it was to wait for the old lease to expire.
pull/1863/head
Matt Rickard 2017-08-21 21:38:48 -07:00
parent 9b2dd165b3
commit c7247b9b17
1 changed files with 0 additions and 4 deletions

4
test/integration/start_stop_delete_test.go Normal file → Executable file
View File

@ -47,10 +47,6 @@ func TestStartStop(t *testing.T) {
t.Fatalf("IP command returned an invalid address: %s", ip)
}
// TODO:r2d4 The KVM driver can't handle
// starting and stopping immediately
time.Sleep(30 * time.Second)
checkStop := func() error {
runner.RunCommand("stop", true)
return runner.CheckStatusNoFail(state.Stopped.String())