Fix Gunicorn worker

This commit is contained in:
messense
2017-05-23 11:28:12 +08:00
parent 3eed81c1eb
commit 6bdc0d2e5e
2 changed files with 6 additions and 5 deletions

View File

@@ -48,8 +48,6 @@ class GunicornWorker(base.Worker):
protocol = (WebSocketProtocol if self.app.callable.websocket_enabled
else HttpProtocol)
self._server_settings = self.app.callable._helper(
host=None,
port=None,
loop=self.loop,
debug=is_debug,
protocol=protocol,