Improve logging for remote server connection lost

Ref https://github.com/GNS3/gns3-gui/issues/2074
pull/1044/head
Julien Duponchelle 7 years ago
parent 51d6152a5c
commit 4dc55a5af4
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -580,8 +580,10 @@ class Compute:
Forward a call to the emulator on compute
"""
try:
res = yield from self.http_query(method, "/{}/{}".format(type, path), data=data, timeout=None)
action = "/{}/{}".format(type, path)
res = yield from self.http_query(method, action, data=data, timeout=None)
except aiohttp.errors.DisconnectedError:
log.error("Connection lost to %s during %s %s", self._id, method, action)
raise aiohttp.web.HTTPGatewayTimeout()
return res.json

Loading…
Cancel
Save