From 1189d2a8bbd3e4e78512104dbf436cf891eb0fe9 Mon Sep 17 00:00:00 2001 From: Scott Meisburger Date: Fri, 24 Feb 2017 11:58:55 -0500 Subject: [PATCH] httpserver: pass no_keep_alive option to connection params --- tornado/httpserver.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- 2.47.2