(self, application, request, **kwargs)
| 259 | |
| 260 | class ScriptStreamSocket(tornado.websocket.WebSocketHandler): |
| 261 | def __init__(self, application, request, **kwargs): |
| 262 | super().__init__(application, request, **kwargs) |
| 263 | |
| 264 | self.executor = None |
| 265 | |
| 266 | @check_authorization |
| 267 | @inject_user |