Override check_origin from tornado.websocket

This commit is contained in:
Daniel Lintott 2014-08-06 22:43:37 +01:00
parent 0cfb446146
commit 578bb5741d
2 changed files with 4 additions and 1 deletions

View File

@ -52,6 +52,9 @@ class JSONRPCWebSocket(tornado.websocket.WebSocketHandler):
self._session_id = str(uuid.uuid4())
self.zmq_router = zmq_router
def check_origin(self, origin):
return True
@property
def session_id(self):
"""

View File

@ -23,5 +23,5 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)
__version__ = "1.0beta1"
__version__ = "1.0beta2-dev1"
__version_info__ = (1, 0, 0, -99)