1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-13 20:08:55 +00:00

No timeout for listing images

Fix #1617
This commit is contained in:
Julien Duponchelle 2016-10-27 15:34:17 +02:00
parent eff23eefe9
commit ae1a9d9a5f
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -545,7 +545,7 @@ class Compute:
"""
images = []
res = yield from self.http_query("GET", "/{}/images".format(type), timeout=120)
res = yield from self.http_query("GET", "/{}/images".format(type), timeout=None)
images = res.json
try: