tornadio2
tornadio2 copied to clipboard
Python socket.io server implementation on top of Tornado framework
# Issue Type [x] Bug (Typo) # Steps to Replicate and Expected Behaviour - Examine tornadio2/persistent.py, tornadio2/session.py and observe `hearbeat`, however expect to see `heartbeat`. - Examine doc/deployment.rst and observe...
Python3
Hi, Please add support for Python3. I tried packaging tornadio2 for Python 3, for Arch Linux, by using `2to3`. This resolved several issues, but there are a few minor issues...
Traceback (most recent call last): File "/usr/local/lib/python3.4/dist-packages/tornado/websocket.py", line 494, in _run_callback result = callback(*args, **kwargs) File "/usr/local/lib/python3.4/dist-packages/TornadIO2-0.0.3-py3.4.egg/tornadio2/persistent.py", line 91, in open raise HTTPError(401, "Invalid Session") tornado.web.HTTPError: HTTP 401: Unauthorized (Invalid...
SyntaxError: invalid syntax Traceback (most recent call last): File "", line 1, in File "/usr/local/lib/python3.5/site-packages/circusweb/circushttpd.py", line 25, in import tornadio2 File "/usr/local/lib/python3.5/site-packages/tornadio2/**init**.py", line 25, in from tornadio2.router import TornadioRouter File...
This fixes issue #48. It was surprisingly straightforward. A few things of note: 0. The aim was to have a single codebase that's compatible with both major versions. 1. It...
Is `tornadio2` compatible with `tornado > 3`? Over here I just got these failures: ``` ====================================================================== ERROR: tests.gen_test.test ---------------------------------------------------------------------- Traceback (most recent call last): File "/usr/lib/python2.7/site-packages/nose/case.py", line 197, in runTest...
Current implementation of socket.io is synchronous in that the `raw_message` function in `session.py` wait for the result from the event handler, and send that result as an ACK response to...
hey it works great in IE,android and chrome,but doesnt work in firefox
Hi all, I am using tornadio2 from the GIT repository, b4632099a58fc672aaebc55bc3b850da34f87b4e I recently dicovered a problem in the way heartbeats are handled by Tornadio. Incoming messages go through the on_message...