mirror of
https://github.com/GNS3/gns3-server
synced 2024-12-26 00:38:10 +00:00
Catch 401 error when connecting to a compute websocket
This commit is contained in:
parent
9fc23f07f1
commit
ff61f79a88
@ -371,8 +371,11 @@ class Compute:
|
||||
"""
|
||||
Connect to the notification stream
|
||||
"""
|
||||
try:
|
||||
self._ws = yield from self._session().ws_connect(self._getUrl("/notifications/ws"))
|
||||
while True:
|
||||
except aiohttp.errors.WSServerHandshakeError:
|
||||
self._ws
|
||||
while self._ws is not None:
|
||||
try:
|
||||
response = yield from self._ws.receive()
|
||||
except aiohttp.errors.WSServerHandshakeError:
|
||||
|
Loading…
Reference in New Issue
Block a user