aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--vm/qemu/qemu.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/vm/qemu/qemu.go b/vm/qemu/qemu.go
index 602cc4fb4..e57c755c3 100644
--- a/vm/qemu/qemu.go
+++ b/vm/qemu/qemu.go
@@ -341,6 +341,9 @@ func (pool *Pool) Create(workdir string, index int) (vmimpl.Instance, error) {
if i < 1000 && strings.Contains(err.Error(), "ould not set up host forwarding rule") {
continue
}
+ if i < 1000 && strings.Contains(err.Error(), "Device or resource busy") {
+ continue
+ }
return nil, err
}
}