From 14f58bdaecb288ac65782b2025e765c514b1844e Mon Sep 17 00:00:00 2001 From: Adam Tauber Date: Sun, 25 Dec 2016 23:31:51 +0100 Subject: [PATCH] [fix] robot tests ++ set default value for server http protocol version --- searx/settings_robot.yml | 1 + searx/webapp.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/searx/settings_robot.yml b/searx/settings_robot.yml index 7d270144..dbaf2fd5 100644 --- a/searx/settings_robot.yml +++ b/searx/settings_robot.yml @@ -13,6 +13,7 @@ server: secret_key : "ultrasecretkey" # change this! base_url : False image_proxy : False + http_protocol_version : "1.0" ui: themes_path : "" diff --git a/searx/webapp.py b/searx/webapp.py index f8253ec0..8f02a034 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -81,7 +81,7 @@ except ImportError: # serve pages with HTTP/1.1 from werkzeug.serving import WSGIRequestHandler -WSGIRequestHandler.protocol_version = "HTTP/{}".format(settings['server']['http_protocol_version']) +WSGIRequestHandler.protocol_version = "HTTP/{}".format(settings['server'].get('http_protocol_version', '1.0')) static_path, templates_path, themes =\ get_themes(settings['ui']['themes_path']