bypass all session logic when application does not exist
This commit is contained in:
2
VERSION
2
VERSION
@@ -1 +1 @@
|
||||
Version 2.6.0-development+timestamp.2013.08.28.09.56.28
|
||||
Version 2.6.0-development+timestamp.2013.08.29.08.09.00
|
||||
|
||||
@@ -454,8 +454,10 @@ def wsgibase(environ, responder):
|
||||
serve_controller(request, response, session)
|
||||
|
||||
except HTTP, http_response:
|
||||
|
||||
if static_file:
|
||||
|
||||
# if this is a static file
|
||||
# or the application does not exist
|
||||
if static_file or not hasattr(current,'request'):
|
||||
return http_response.to(responder, env=env)
|
||||
|
||||
if request.body:
|
||||
|
||||
Reference in New Issue
Block a user