mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-06-11 20:11:50 +00:00
@ -563,10 +563,13 @@ class Compute:
|
|||||||
res = yield from self.http_query("GET", "/{}/images".format(type), timeout=None)
|
res = yield from self.http_query("GET", "/{}/images".format(type), timeout=None)
|
||||||
images = res.json
|
images = res.json
|
||||||
|
|
||||||
|
try:
|
||||||
if type in ["qemu", "dynamips", "iou"]:
|
if type in ["qemu", "dynamips", "iou"]:
|
||||||
for local_image in list_images(type):
|
for local_image in list_images(type):
|
||||||
if local_image['filename'] not in [i['filename'] for i in images]:
|
if local_image['filename'] not in [i['filename'] for i in images]:
|
||||||
images.append(local_image)
|
images.append(local_image)
|
||||||
|
except OSError as e:
|
||||||
|
raise ComputeError("Can't list images: {}".format(str(e)))
|
||||||
return images
|
return images
|
||||||
|
|
||||||
@asyncio.coroutine
|
@asyncio.coroutine
|
||||||
|
Reference in New Issue
Block a user