(self, handler)
| 3419 | """ Untested. """ |
| 3420 | |
| 3421 | def run(self, handler): |
| 3422 | depr(0, 13, "Diesel is not tested or supported and will be removed.") |
| 3423 | from diesel.protocols.wsgi import WSGIApplication |
| 3424 | app = WSGIApplication(handler, port=self.port) |
| 3425 | app.run() |
| 3426 | |
| 3427 | |
| 3428 | class GeventServer(ServerAdapter): |