We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5883752 commit b303419Copy full SHA for b303419
articles/azure-web-pubsub/quickstarts-push-messages-from-server.md
@@ -180,7 +180,7 @@ python -m venv env
180
source ./env/bin/activ
181
182
pip install azure-messaging-webpubsubservice
183
-pip install websock
+pip install websockets
184
```
185
186
#### Use the WebSocket API to connect to your Web PubSub resource. Create a `subscribe.py` file with the following code
@@ -213,8 +213,8 @@ if __name__ == '__main__':
213
214
try:
215
asyncio.get_event_loop().run_until_complete(connect(token['url']))
216
- except KeyboardInterrupt:
217
- pass
+ except KeyboardInterrupt:
+ pass
218
219
220
0 commit comments