Commit 98da1619 authored by Denis Bilenko's avatar Denis Bilenko

Fixed issue #67: Information lost from raw URI with gevent.wsgi.WSGIServer. Patch by Andreas Blixt.

parent 9d2de3d1
......@@ -92,6 +92,7 @@ class WSGIHandler(object):
'SERVER_PROTOCOL': 'HTTP/%d.%d' % req.version,
'REMOTE_ADDR': req.remote_host,
'REMOTE_PORT': str(req.remote_port),
'REQUEST_URI': req.uri,
'wsgi.input': req.input_buffer})
for header, value in req.get_input_headers():
header = header.replace('-', '_').upper()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment