We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Before submitting a new issue, please check if a similar issue has already been filed.
If only a websocket instance is created and start()ed, it will hang if stop() is called without executing a subscription (for instance).
A websocket program should terminate gracefully and immediately after calling stop()
Program does not terminate.
from binance.websocket.spot.websocket_client import SpotWebsocketClient as WebsocketClient
ws_client = WebsocketClient() ws_client.start() ws_client.stop()
Default system and setup
The text was updated successfully, but these errors were encountered:
Please have a try on the latest v3.
Sorry, something went wrong.
No branches or pull requests
Before submitting a new issue, please check if a similar issue has already been filed.
Trivial websocket program hangs
If only a websocket instance is created and start()ed, it will hang if stop() is called without executing a subscription (for instance).
Expected behaviour
A websocket program should terminate gracefully and immediately after calling stop()
Actual behaviour
Program does not terminate.
Steps to reproduce
from binance.websocket.spot.websocket_client import SpotWebsocketClient as WebsocketClient
ws_client = WebsocketClient()
ws_client.start()
ws_client.stop()
Environment
Default system and setup
The text was updated successfully, but these errors were encountered: