Changeset 1685
- Timestamp:
- 06/23/07 18:29:49
- Files:
-
- trunk/cherrypy/_cpmodpy.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/_cpmodpy.py
r1652 r1685 164 164 path = req.uri 165 165 qs = req.args or "" 166 sproto = req.protocol166 reqproto = req.protocol 167 167 headers = req.headers_in.items() 168 168 rfile = _ReadOnlyRequest(req) … … 171 171 redirections = [] 172 172 while True: 173 request = app.get_serving(local, remote, scheme) 173 request, response = app.get_serving(local, remote, scheme, 174 "HTTP/1.1") 174 175 request.login = req.user 175 176 request.multithread = bool(threaded) … … 180 181 # Run the CherryPy Request object and obtain the response 181 182 try: 182 re sponse = request.run(method, path, qs, sproto, headers, rfile)183 request.run(method, path, qs, reqproto, headers, rfile) 183 184 break 184 185 except cherrypy.InternalRedirect, ir:

