Catch 401 error when connecting to a compute websocket

This commit is contained in:
Julien Duponchelle
2016-08-31 09:59:50 +02:00
parent 9fc23f07f1
commit ff61f79a88

View File

@ -371,8 +371,11 @@ class Compute:
""" """
Connect to the notification stream Connect to the notification stream
""" """
self._ws = yield from self._session().ws_connect(self._getUrl("/notifications/ws")) try:
while True: self._ws = yield from self._session().ws_connect(self._getUrl("/notifications/ws"))
except aiohttp.errors.WSServerHandshakeError:
self._ws
while self._ws is not None:
try: try:
response = yield from self._ws.receive() response = yield from self._ws.receive()
except aiohttp.errors.WSServerHandshakeError: except aiohttp.errors.WSServerHandshakeError: