##// END OF EJS Templates
allow session_id to be undefined when starting kernel channels
MinRK -
Show More
@@ -159,7 +159,7 b' class AuthenticatedZMQStreamHandler(ZMQStreamHandler, IPythonHandler):'
159 self.log.warn("Couldn't authenticate WebSocket connection")
159 self.log.warn("Couldn't authenticate WebSocket connection")
160 raise web.HTTPError(403)
160 raise web.HTTPError(403)
161
161
162 if self.get_argument('session_id'):
162 if self.get_argument('session_id', False):
163 self.session.session = cast_unicode(self.get_argument('session_id'))
163 self.session.session = cast_unicode(self.get_argument('session_id'))
164 else:
164 else:
165 self.log.warn("No session ID specified")
165 self.log.warn("No session ID specified")
General Comments 0
You need to be logged in to leave comments. Login now