flask-uwsgi-websocket icon indicating copy to clipboard operation
flask-uwsgi-websocket copied to clipboard

🔌 High-performance WebSockets for your Flask apps powered by uWSGI.

Results 34 flask-uwsgi-websocket issues
Sort by recently updated
recently updated
newest added

Hi, I'm trying to use this component, but, sometimes (really random - most of time, it works fine), when my app restarts, it gives me this error (gevent and asyncio,...

We are trying to use this flask plugin (version=0.4.4) to setup a notification server using redis / uwsgi / gevent and nginx(1.4.7). However we are noticing that on client disconnection...

Hi, could you add a non blocking receive method ? uwsgi.websocket_recv_nb() like https://github.com/unbit/uwsgi/blob/master/tests/websockets.py or https://github.com/unbit/uwsgi/blob/master/tests/websockets_chat_async.py i am trying to create an ssh bridge but using you library in place of...

does flask-uwsgi websocket support authentication? How to do it? Is there something like http://flask-socketio.readthedocs.org/en/latest/#authentication

Hi, First i was not able to make websocket work.. but i forgot to install libssl. (Edited)

I'm seeing a problem with receiving multiple events in v0.5.2. I have a browser that sends multiple events. However, flask-uwsgi-websocket only reads 1 event every `timeout` seconds (30, in my...

Hello, I'm currently using Flask-Sockets like you mention in your README. I am able to run this on Heroku using this as my Procfile: ``` web: gunicorn -k flask_sockets.worker app:app...

Following issue #27, i've been trying to implement a send/receive asyncio listener coroutine as follows: websock = WebSocket(app) @websock.route('/websocket') def echo(ws): r = redis_conn.pubsub() r.subscribe("test_channel") asyncio.Task(listen(ws,r)) With the coroutine (called...

I am trying to use this in combination with flask-sqlalchemy, but I have noticed that after each request, a connection will stay open when I use the GeventWebSocket. This connection...

Sometimes I get the following errors: ``` uwsgi_response_write_body_do(): Broken pipe [core/writer.c line 419] during GET /output (127.0.0.1) ``` or ``` uwsgi_websockets_recv_pkt(): Connection reset by peer [core/websockets.c line 194] during GET...