summary refs log tree commit diff
path: root/synapse/app/frontend_proxy.py
diff options
context:
space:
mode:
authorAmber Brown <hawkowl@atleastfornow.net>2018-10-15 20:13:19 +1100
committerGitHub <noreply@github.com>2018-10-15 20:13:19 +1100
commitf9ce1b4eb0e8c28d1d7f1373292c470cfeb15ed4 (patch)
tree0632fa54fdc65a87404a75b6d9485df72313b45b /synapse/app/frontend_proxy.py
parentMake workers work on Py3 (#4027) (diff)
parentsynapse/app: frontend_proxy.py: actually make workers work on py3 (diff)
downloadsynapse-f9ce1b4eb0e8c28d1d7f1373292c470cfeb15ed4.tar.xz
Merge pull request #4033 from intelfx/py37-hotfixes
py3: python3.7 hotfixes
Diffstat (limited to 'synapse/app/frontend_proxy.py')
-rw-r--r--synapse/app/frontend_proxy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/app/frontend_proxy.py b/synapse/app/frontend_proxy.py

index fc4b25de1c..f5c61dec5b 100644 --- a/synapse/app/frontend_proxy.py +++ b/synapse/app/frontend_proxy.py
@@ -68,7 +68,7 @@ class PresenceStatusStubServlet(ClientV1RestServlet): "Authorization": auth_headers, } result = yield self.http_client.get_json( - self.main_uri + request.uri, + self.main_uri + request.uri.decode('ascii'), headers=headers, ) defer.returnValue((200, result)) @@ -125,7 +125,7 @@ class KeyUploadServlet(RestServlet): "Authorization": auth_headers, } result = yield self.http_client.post_json_get_json( - self.main_uri + request.uri, + self.main_uri + request.uri.decode('ascii'), body, headers=headers, )