8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 637619d commit 955758dCopy full SHA for 955758d
examples/multiplexed/index.html
@@ -18,7 +18,6 @@
18
$("#chat").append("<div>" + data + "</div>");
19
});
20
21
-
22
function getPrintableDate(date) {
23
return date.getFullYear().toString() + '/' +
24
(date.getMonth()+1).toString() + '/' +
tornadio2/session.py
@@ -301,7 +301,8 @@ def connect_endpoint(self, url):
301
302
info = ConnectionInfo(self.remote_ip, args, dict())
303
304
- conn.on_open(info)
+ if conn.on_open(info) == False:
305
+ self.disconnect_endpoint(endpoint)
306
307
def disconnect_endpoint(self, endpoint):
308
"""Disconnect endpoint
0 commit comments