From: Scott Meisburger Date: Fri, 24 Feb 2017 16:58:55 +0000 (-0500) Subject: httpserver: pass no_keep_alive option to connection params X-Git-Tag: v4.5.0~26^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1963%2Fhead;p=thirdparty%2Ftornado.git httpserver: pass no_keep_alive option to connection params --- diff --git a/tornado/httpserver.py b/tornado/httpserver.py index c7b9c2f8b..251d72af5 100644 --- a/tornado/httpserver.py +++ b/tornado/httpserver.py @@ -149,7 +149,8 @@ class HTTPServer(TCPServer, Configurable, max_header_size=max_header_size, header_timeout=idle_connection_timeout or 3600, max_body_size=max_body_size, - body_timeout=body_timeout) + body_timeout=body_timeout, + no_keep_alive=no_keep_alive) TCPServer.__init__(self, io_loop=io_loop, ssl_options=ssl_options, max_buffer_size=max_buffer_size, read_chunk_size=chunk_size)