mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-28 03:08:14 +00:00
Do not stop searching for Qemu binaries if one binary cannot be executed. Ref #2306
This commit is contained in:
parent
13d9afd8bc
commit
473fa98eda
@ -160,13 +160,20 @@ class Qemu(BaseManager):
|
|||||||
for arch in archs:
|
for arch in archs:
|
||||||
if f.endswith(arch) or f.endswith("{}.exe".format(arch)) or f.endswith("{}w.exe".format(arch)):
|
if f.endswith(arch) or f.endswith("{}.exe".format(arch)) or f.endswith("{}w.exe".format(arch)):
|
||||||
qemu_path = os.path.join(path, f)
|
qemu_path = os.path.join(path, f)
|
||||||
|
try:
|
||||||
version = await Qemu.get_qemu_version(qemu_path)
|
version = await Qemu.get_qemu_version(qemu_path)
|
||||||
|
except QemuError as e:
|
||||||
|
log.warning(str(e))
|
||||||
|
continue
|
||||||
qemus.append({"path": qemu_path, "version": version})
|
qemus.append({"path": qemu_path, "version": version})
|
||||||
else:
|
else:
|
||||||
qemu_path = os.path.join(path, f)
|
qemu_path = os.path.join(path, f)
|
||||||
|
try:
|
||||||
version = await Qemu.get_qemu_version(qemu_path)
|
version = await Qemu.get_qemu_version(qemu_path)
|
||||||
|
except QemuError as e:
|
||||||
|
log.warning(str(e))
|
||||||
|
continue
|
||||||
qemus.append({"path": qemu_path, "version": version})
|
qemus.append({"path": qemu_path, "version": version})
|
||||||
|
|
||||||
except OSError:
|
except OSError:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user