-
Notifications
You must be signed in to change notification settings - Fork 205
New issue
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
Error initializing socket - transport.recv_packet() StopIteration #159
Comments
It looks like what's going on is in This is then passed to I assume the issue is that the response content is incorrect, and can't be parsed correctly, but I'm not sure what the response content should look like. @invisibleroads Would it be possible to explain what the intended purpose of this code is / how establishing the engineIO connection works? Thank you. |
The issue was that I was using socket.io 2.0.1. Uninstalling and installing |
I searched for a solution to this problem for days, thanks a lot! |
This module socketIO-client-nexus fixes issue with compatible socket version socket.io protocol 1.x Don't forget to change from import socketIO-client to socketIO-client-nexus Hope this solve your issue.. |
Hi,
I'm running a simple hello world example:
server.js
client.py
The server gets to printing "CONNECTION" but the client never prints "HI". The client crashes with this traceback:
Do you know what could be happening here? Thanks in advance.
The text was updated successfully, but these errors were encountered: