(self, handler)
| 3817 | """ Untested. """ |
| 3818 | |
| 3819 | def run(self, handler): |
| 3820 | depr(0, 13, "Diesel is not tested or supported and will be removed.") |
| 3821 | from diesel.protocols.wsgi import WSGIApplication |
| 3822 | app = WSGIApplication(handler, port=self.port) |
| 3823 | app.run() |
| 3824 | |
| 3825 | |
| 3826 | class GeventServer(ServerAdapter): |