Skip to content
Snippets Groups Projects
Commit 3a135a0a authored by Thomas Kluyver's avatar Thomas Kluyver
Browse files

Ignore empty query strings

parent bf1eb78a
No related branches found
No related tags found
No related merge requests found
...@@ -154,7 +154,7 @@ class ProxyHandler(RequestHandler): ...@@ -154,7 +154,7 @@ class ProxyHandler(RequestHandler):
async def get(self, path): async def get(self, path):
req_path = path req_path = path
if self.request.query is not None: if self.request.query:
req_path += '?' + self._normalize_query(self.request.query) req_path += '?' + self._normalize_query(self.request.query)
response = await self._get_with_cache(req_path) response = await self._get_with_cache(req_path)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment