将重连日志放到except外面(#8)

This commit is contained in:
John Smith 2019-06-07 20:02:37 +08:00
parent fe5b4ca2c9
commit 39fb86a9b2

View File

@ -373,12 +373,14 @@ class BLiveClient:
if self._room_id is None:
await self.init_room()
retry_count = 0
while True:
heartbeat_future = None
try:
# 连接
async with self._session.ws_connect(WEBSOCKET_URL,
ssl=self._ssl) as websocket:
retry_count = 0
self._websocket = websocket
await self._send_auth()
heartbeat_future = asyncio.ensure_future(self._heartbeat_loop(), loop=self._loop)
@ -395,11 +397,7 @@ class BLiveClient:
break
except (aiohttp.ClientConnectorError, asyncio.TimeoutError):
# 重连
logger.warning('room %d 掉线重连中', self.room_id)
# try:
# await asyncio.sleep(5)
# except asyncio.CancelledError:
# break
pass
finally:
if heartbeat_future is not None:
heartbeat_future.cancel()
@ -409,6 +407,13 @@ class BLiveClient:
break
self._websocket = None
retry_count += 1
logger.warning('room %d 掉线重连中%d', self.room_id, retry_count)
try:
await asyncio.sleep(1)
except asyncio.CancelledError:
break
self._future = None
async def _heartbeat_loop(self):