websockets icon indicating copy to clipboard operation
websockets copied to clipboard

Library for building WebSocket servers and clients in Python

Results 106 websockets issues
Sort by recently updated
recently updated
newest added

See here: https://github.com/aaugustin/websockets/actions/runs/4581853159/jobs/8091674301#step:5:26

bug

See here: https://github.com/aaugustin/websockets/actions/runs/4581785367/jobs/8091558716?pr=1320#step:5:28

bug

Logs here: https://github.com/aaugustin/websockets/actions/runs/4550528991/jobs/8023630525#step:5:50

bug

Currently, if ping -> pong latency is 10 seconds, pings are sent every 30 seconds. It would be slightly more correct to send them every 20 seconds. This is a...

enhancement
low priority

I found that when configuring our company's Apache server, redirecting ws requests to wss and using this websocket library for connection would result in the error "The plain HTTP request...

bug

Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.16.2 to 2.17.0. Release notes Sourced from pypa/cibuildwheel's releases. v2.17.0 🌟 Adds the ability to inherit configuration in TOML overrides. This makes certain configurations much simpler. If...

dependencies

It seems that `server.close()` is not an `async` function, so I changed ```python await server.close() ``` to ```python server.close() await server.wait_closed() ``` in the API reference.

Now, every HTTP request is handled as if it were a WebSocket connection. However, when an HTTP request is made and is expected to close the connection, an error arises...