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

Fix a crash when docker is used but not installed

Fix #605
This commit is contained in:
Julien Duponchelle 2016-07-04 14:12:39 +02:00
parent f9bc745ddb
commit b905760635
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -114,7 +114,7 @@ class Docker(BaseManager):
data=data,
headers={"content-type": "application/json", },
)
except aiohttp.ClientResponseError as e:
except (aiohttp.ClientResponseError, aiohttp.ClientOSError) as e:
raise DockerError("Docker has returned an error: {}".format(str(e)))
if response.status >= 300:
body = yield from response.read()