Skip to content

Commit

Permalink
RAW_URI is full uri (query etc.), not just path
Browse files Browse the repository at this point in the history
  • Loading branch information
tilgovi authored and benoitc committed Jul 25, 2010
1 parent 19ab06c commit 800637c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gunicorn/http/wsgi.py
Expand Up @@ -96,7 +96,7 @@ def create(req, sock, client, server, cfg):
"REQUEST_METHOD": req.method,
"PATH_INFO": unquote(path_info),
"QUERY_STRING": req.query,
"RAW_URI": req.path,
"RAW_URI": req.uri,
"CONTENT_TYPE": content_type,
"CONTENT_LENGTH": content_length,
"REMOTE_ADDR": remote[0],
Expand Down

0 comments on commit 800637c

Please sign in to comment.