Skip to content

Commit a56d4cd

Browse files
Finbarr Bradygconklin
Finbarr Brady
authored andcommitted
### 0.2.21 (2022-04-07)
* Fix for [fbradyirl#13][i13] - Update websockets lib to latest.
1 parent cb5c5c0 commit a56d4cd

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,10 @@ and off you go!
265265
* Fix for [#20][i20]
266266
* Use system SSL context when connecting websocket.
267267

268+
### 0.2.21 (2022-04-07)
269+
270+
* Fix for [#13][i13] - Update websockets lib to latest.
271+
268272
[1]: https://github.com/aaugustin/websockets
269273

270274
[2]: https://github.com/CiscoDevNet/webexteamssdk
@@ -283,4 +287,6 @@ and off you go!
283287

284288
[i6]: https://github.com/fbradyirl/webex_bot/issues/6
285289

290+
[i13]: https://github.com/fbradyirl/webex_bot/issues/13
291+
286292
[i20]: https://github.com/fbradyirl/webex_bot/issues/20

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
with open('README.md') as readme_file:
88
readme = readme_file.read()
99

10-
requirements = ['webexteamssdk', 'coloredlogs', 'websockets==8.1', 'backoff']
10+
requirements = ['webexteamssdk', 'coloredlogs', 'websockets==10.2', 'backoff']
1111

1212
setup_requirements = ['pytest-runner', ]
1313

webex_bot/websockets/webex_websocket_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ async def _websocket_recv():
151151
logger.warning(
152152
f"An exception occurred while processing message. Ignoring. {messageProcessingException}")
153153

154-
@backoff.on_exception(backoff.expo, websockets.exceptions.ConnectionClosedError)
154+
@backoff.on_exception(backoff.expo, websockets.ConnectionClosedError)
155155
@backoff.on_exception(backoff.expo, socket.gaierror)
156156
async def _connect_and_listen():
157157
ws_url = self.device_info['webSocketUrl']

0 commit comments

Comments
 (0)