You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm just testing the multiplex example, and I have noticed that every time I
send any message to the last channel (Carl's) , I get this error:
Traceback (most recent call last):
File "D:..\tornado\transports\websocket.py", line 60, in on_message
self.session.on_messages(msg)
File "D:..\tornado\session.py", line 418, in on_messages
self.conn.on_message(msg)
File "I:..\examples\multiplex\multiplex.py", line 59, in on_message
session.on_message(parts[2])
File "I:..examples\multiplex\multiplex.py", line 17, in on_message
self.conn.on_message(msg)
File "D:..s\sockjs\tornado\conn.py", line 36, in on_message
raise NotImplementedError()
I know that the connection is closed, but it doesn't work even after removing the self.close() from CarlConnection. Any ideas as why it's happening?
python version : 2.7.5
I have installed sockjs-tornado package using pip.
The text was updated successfully, but these errors were encountered:
Hi there,
I'm just testing the multiplex example, and I have noticed that every time I
send any message to the last channel (Carl's) , I get this error:
Traceback (most recent call last): File "D:..\tornado\transports\websocket.py", line 60, in on_message self.session.on_messages(msg) File "D:..\tornado\session.py", line 418, in on_messages self.conn.on_message(msg) File "I:..\examples\multiplex\multiplex.py", line 59, in on_message session.on_message(parts[2]) File "I:..examples\multiplex\multiplex.py", line 17, in on_message self.conn.on_message(msg) File "D:..s\sockjs\tornado\conn.py", line 36, in on_message raise NotImplementedError()
I know that the connection is closed, but it doesn't work even after removing the self.close() from CarlConnection. Any ideas as why it's happening?
The text was updated successfully, but these errors were encountered: