1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-24 09:18:08 +00:00

Do not crash when closing a project if VirtualBox is not accessible

Fix #164
This commit is contained in:
Julien Duponchelle 2015-04-29 14:21:02 +02:00
parent e75fbc9d73
commit b9bc73fd01

View File

@ -122,7 +122,12 @@ class VirtualBox(BaseManager):
""" """
hdds = [] hdds = []
properties = yield from self.execute("list", ["hdds"]) try:
properties = yield from self.execute("list", ["hdds"])
# If VirtualBox is not available we have no inaccessible hdd
except VirtualBoxError:
return hdds
flag_inaccessible = False flag_inaccessible = False
for prop in properties: for prop in properties:
try: try: