(self, *args, **kwargs)
| 20 | class UiWSGIHandler(WSGIHandler): |
| 21 | |
| 22 | def __init__(self, *args, **kwargs): |
| 23 | self.server = args[2] |
| 24 | super(UiWSGIHandler, self).__init__(*args, **kwargs) |
| 25 | self.args = args |
| 26 | self.kwargs = kwargs |
| 27 | |
| 28 | def run_application(self): |
| 29 | if "HTTP_UPGRADE" in self.environ: # Websocket request |