Fix bug when GNS3 VM were not saved. Fix tests.

This commit is contained in:
grossmj
2019-04-14 17:42:20 +07:00
parent 6dc58b28fd
commit e962717448
2 changed files with 8 additions and 2 deletions

View File

@ -74,6 +74,7 @@ class Compute:
self._user = None
self._password = None
self._connected = False
self._notifications = None
self._closed = False # Close mean we are destroying the compute node
self._controller = controller
self._set_auth(user, password)
@ -155,7 +156,8 @@ class Compute:
if self._http_session and not self._http_session.closed:
await self._http_session.close()
try:
await self._notifications
if self._notifications:
await self._notifications
except asyncio.CancelledError:
pass
self._closed = True
@ -448,6 +450,8 @@ class Compute:
pass
self._connected = False
break
except aiohttp.client_exceptions.ClientResponseError as e:
log.error("Client response error received on compute WebSocket '{}': {}".format(ws_url,e))
finally:
log.info("Connection closed to compute WebSocket '{}'".format(ws_url))