From 4cbd49921f389b6793ffa4907b546dec173edd4f Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sat, 26 Mar 2016 19:03:16 -0700 Subject: [PATCH] Use HTTP 1.1 --- homeassistant/components/http.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/http.py b/homeassistant/components/http.py index 7c252385d5d..3453d815044 100644 --- a/homeassistant/components/http.py +++ b/homeassistant/components/http.py @@ -164,6 +164,7 @@ class RequestHandler(SimpleHTTPRequestHandler): # Track if this was an authenticated request self.authenticated = False SimpleHTTPRequestHandler.__init__(self, req, client_addr, server) + self.protocol_version = 'HTTP/1.1' def log_message(self, fmt, *arguments): """Redirect built-in log to HA logging."""