diff options
author | Amber Brown <hawkowl@atleastfornow.net> | 2018-10-15 20:13:19 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-15 20:13:19 +1100 |
commit | f9ce1b4eb0e8c28d1d7f1373292c470cfeb15ed4 (patch) | |
tree | 0632fa54fdc65a87404a75b6d9485df72313b45b /synapse/app | |
parent | Make workers work on Py3 (#4027) (diff) | |
parent | synapse/app: frontend_proxy.py: actually make workers work on py3 (diff) | |
download | synapse-f9ce1b4eb0e8c28d1d7f1373292c470cfeb15ed4.tar.xz |
Merge pull request #4033 from intelfx/py37-hotfixes
py3: python3.7 hotfixes
Diffstat (limited to 'synapse/app')
-rw-r--r-- | synapse/app/frontend_proxy.py | 4 |
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, ) |