1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-15 12:59:06 +00:00

Use HTTP error 409 instead of 500 for VMError.

This commit is contained in:
grossmj 2015-02-18 17:48:02 -07:00
parent d65617657c
commit 610dee957d
2 changed files with 4 additions and 4 deletions

View File

@ -1495,10 +1495,10 @@ class Router(BaseVM):
try:
reply = yield from self._hypervisor.send("vm extract_config {}".format(self._name))
reply = reply[0].rsplit(' ', 2)[-2:]
except IOError:
except DynamipsError:
#for some reason Dynamips gets frozen when it does not find the magic number in the NVRAM file.
return None, None
reply = reply[0].rsplit(' ', 2)[-2:]
startup_config = reply[0][1:-1] # get statup-config and remove single quotes
private_config = reply[1][1:-1] # get private-config and remove single quotes
return startup_config, private_config

View File

@ -115,8 +115,8 @@ class Route(object):
except VMError as e:
log.error("VM error detected: {type}".format(type=type(e)), exc_info=1)
response = Response(route=route)
response.set_status(500)
response.json({"message": str(e), "status": 500})
response.set_status(409)
response.json({"message": str(e), "status": 409})
except Exception as e:
log.error("Uncaught exception detected: {type}".format(type=type(e)), exc_info=1)
response = Response(route=route)