gevent-socketio
gevent-socketio copied to clipboard
Official repository for gevent-socketio
Things break with gevent 1.0, so we need to start a branch to support it
I'm trying to add pyramid mailer support to an app that uses gevent-socketio: in development.ini ``` mail.host = smtp.gmail.com mail.port = 587 mail.username = username mail.password = password mail.tls =...
Using gevents makes me think it's not useable to use in python 3.x but some people pointed me in this direction. Just want some clarification if possible. thanks in advance.
I'm running the server on an Ubuntu virtual machine (Quantal) and the client is IE9 on Windows Vista, with Flash disabled to test the other transports. I'm just testing, so...
Hi , i am not sure that this is the place to ask this , but i could not find info about the issue , so i will try here...
``` Traceback (most recent call last): File "/root/smzwo/testenv/lib/python2.6/site-packages/gevent/greenlet.py", line 390, in run result = self._run(*self.args, **self.kwargs) File "/root/smzwo/testenv/lib/python2.6/site-packages/socketio/virtsocket.py", line 397, in _receiver_loop self.kill() # ?? what,s the best clean-up when...
I'm wondering about the naming of `broadcast_event` in `BroadcastMixin`. Would it make more sense to rename this to `emit_broadcast` instead? Also, I'm wondering if it'd be possible to have a...
I'm trying to use gevent-socketio with Django. When 'flashsocket' transport is used, all HttpOnly cookies are excluded from request cookies. Since Django sessions system stores an HttpOnly cookie sessionid, user...
I am seeing the following error on my app after it has been running for some time. Uncaught Error: InvalidStateError: DOM Exception 11 socket.io.min.js:2 Any idea what could be the...
when heartbeat_interval is set bigger than raw socket.gettimeout() the connection will timeout everytime no more data is sent over the stream. maybe add self.sock.settimeout(config['heartbeat_timeout']) somewhere?