Skip to content
Snippets Groups Projects
Commit fde38e5a authored by Rolf Niepraschk's avatar Rolf Niepraschk
Browse files

...

parent 674ba037
Branches
No related tags found
No related merge requests found
...@@ -69,8 +69,7 @@ def couchdb_proxy(real_port, p=''): ...@@ -69,8 +69,7 @@ def couchdb_proxy(real_port, p=''):
'transfer-encoding', 'connection'] 'transfer-encoding', 'connection']
headers = [(name, value) for (name, value) in resp.raw.headers.items() headers = [(name, value) for (name, value) in resp.raw.headers.items()
if name.lower() not in excluded_headers] if name.lower() not in excluded_headers]
response = Response(resp.content, resp.status_code, headers) return Response(resp.content, resp.status_code, headers)
return response
@app.route('/') @app.route('/')
@app.route('/index.html') @app.route('/index.html')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment