Skip to content
Snippets Groups Projects
Unverified Commit 360bfb7a authored by Olivier Dony's avatar Olivier Dony
Browse files

[FIX] setup: bump up kvm startup delay

Windows can be slower to start than that, sometimes.
parent 1e1e2b4f
No related branches found
No related tags found
No related merge requests found
......@@ -192,7 +192,7 @@ class KVM(object):
l.append('-nographic')
logging.info("Starting kvm: {}".format( " ".join(l)))
self.pid=os.spawnvp(os.P_NOWAIT, l[0], l)
time.sleep(20)
time.sleep(50)
signal.alarm(2400)
signal.signal(signal.SIGALRM, self.timeout)
try:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment