Switch to side-by-side view
--- a/Allura/allura/controllers/task.py +++ b/Allura/allura/controllers/task.py @@ -8,6 +8,6 @@ def __call__(self, environ, start_response): task = environ['task'] - result = task() + result = task(restore_context=False) start_response('200 OK', []) return [ result ]