Fix slowdown

This commit is contained in:
Channel Cat 2016-10-17 23:34:07 -07:00
parent 0c28cdbaf4
commit 18aa937f29

View File

@ -122,8 +122,8 @@ class HttpProtocol(asyncio.Protocol):
def write_response(self, response):
try:
keep_alive = all(
[self.parser.should_keep_alive(), self.signal.stopped])
keep_alive = self.parser.should_keep_alive() \
and not self.signal.stopped
self.transport.write(
response.output(
self.request.version, keep_alive, self.request_timeout))