Replies: 2 comments 4 replies
-
|
You must be using an old version of the python-engineio package, because this was fixed a few months ago. See miguelgrinberg/python-engineio#177. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
I'm having the same problem. python-engineio 4.5.1 |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I came across this exception when I try to close socketio Client.
Exception in thread Thread-17: Traceback (most recent call last): File "/usr/lib/python3.6/threading.py", line 916, in _bootstrap_inner self.run() File "/usr/lib/python3.6/threading.py", line 864, in run self._target(*self._args, **self._kwargs) File "/home/jingsz/.virtualenvs/webrtc_peer/lib/python3.6/site-packages/engineio/client.py", line 687, in _write_loop self.ws.send(encoded_packet) File "/home/jingsz/.virtualenvs/webrtc_peer/lib/python3.6/site-packages/websocket/_core.py", line 253, in send return self.send_frame(frame) File "/home/jingsz/.virtualenvs/webrtc_peer/lib/python3.6/site-packages/websocket/_core.py", line 279, in send_frame l = self._send(data) File "/home/jingsz/.virtualenvs/webrtc_peer/lib/python3.6/site-packages/websocket/_core.py", line 449, in _send return send(self.sock, data) File "/home/jingsz/.virtualenvs/webrtc_peer/lib/python3.6/site-packages/websocket/_socket.py", line 157, in send return _send() File "/home/jingsz/.virtualenvs/webrtc_peer/lib/python3.6/site-packages/websocket/_socket.py", line 139, in _send return sock.send(data) OSError: [Errno 9] Bad file descriptorThe reason maybe is that it is sending STOP packet after the connection have been closed.
Beta Was this translation helpful? Give feedback.
All reactions