# HG changeset patch # User Mads Kiilerich # Date 2022-09-14 06:47:48 # Node ID 2065fe5bab67ff792c501c406a3658dd9acdc0fa # Parent 0f9415c2115eb68503349295ec070213e6df60c4 middleware: use config consistently in https_fixup 070b8c39736f did for unknown reasons introduce a use of the global kallithea.CONFIG . Instead, consistently use the application config object that has been passed. diff --git a/kallithea/config/middleware/https_fixup.py b/kallithea/config/middleware/https_fixup.py --- a/kallithea/config/middleware/https_fixup.py +++ b/kallithea/config/middleware/https_fixup.py @@ -26,7 +26,6 @@ Original author and date, and relevant c """ -import kallithea from kallithea.lib.utils2 import asbool @@ -62,7 +61,7 @@ class HttpsFixup(object): proto = 'https' else: # get protocol from configured WSGI environment variable - url_scheme_variable = kallithea.CONFIG.get('url_scheme_variable') + url_scheme_variable = self.config.get('url_scheme_variable') if url_scheme_variable: proto = environ.get(url_scheme_variable)