We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa7ebf5 commit cdc2ea3Copy full SHA for cdc2ea3
2 files changed
plexwebsocket.py
@@ -109,7 +109,7 @@ async def running(self):
109
_LOGGER.error("AIOHTTP websocket error")
110
break
111
112
- except aiohttp.ClientConnectionError as error:
+ except (aiohttp.ClientConnectionError, asyncio.TimeoutError) as error:
113
if self.state != STATE_STOPPED:
114
retry_delay = min(2 ** (self.failed_attempts - 1) * 30, 300)
115
self.failed_attempts += 1
setup.py
@@ -3,7 +3,7 @@
3
with open('README.md') as f:
4
long_description = f.read()
5
6
-VERSION="0.0.10"
+VERSION="0.0.11"
7
8
setup(
9
name='plexwebsocket',
0 commit comments