Replies: 2 comments 6 replies
-
Manage to print the stack after modifying 1 line of engineio::socket.py
so the issue is that is interpreted as text whereas it is binary:
|
Beta Was this translation helpful? Give feedback.
3 replies
-
Can't really tell for sure, but I know that uWSGI has issues with binary WebSocket packets, which are sometimes reported to the application as text packets. See unbit/uwsgi#1167. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi
I have subclassed
MyServer extends flask_socketio.SocketIO
It is working fine with Flask and async_mode='gevent' and serializer ="msgpack" (client is javascript with msgpack too).
But when using uwsgi + async_mode='gevent_uwsgi', I get Unexpected error "'utf-8' codec thrown by engineio on Mac
#MyServer extends flask_socketio.SocketIO
@miguelgrinberg any idea ? thanks
Beta Was this translation helpful? Give feedback.
All reactions