diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-11-26 18:10:50 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2019-11-27 10:29:10 +0000 |
commit | 9b9ee75666ffca8e14b44efec6c360c2ccbcf615 (patch) | |
tree | 02866c8f0f7bb0a221da306ae29129686b5344da /synapse/server.py | |
parent | 1.6.0 (diff) | |
download | synapse-9b9ee75666ffca8e14b44efec6c360c2ccbcf615.tar.xz |
Fix startup error when http proxy is defined. (#6421)
Guess I only tested this on python 2 :/ Fixes #6419.
Diffstat (limited to '')
-rw-r--r-- | synapse/server.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/server.py b/synapse/server.py index 90c3b072e8..be9af7f986 100644 --- a/synapse/server.py +++ b/synapse/server.py @@ -318,8 +318,8 @@ class HomeServer(object): def build_proxied_http_client(self): return SimpleHttpClient( self, - http_proxy=os.getenv("http_proxy"), - https_proxy=os.getenv("HTTPS_PROXY"), + http_proxy=os.getenvb(b"http_proxy"), + https_proxy=os.getenvb(b"HTTPS_PROXY"), ) def build_room_creation_handler(self): |