aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2010-07-18 17:59:40 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2010-07-18 17:59:40 -0500
commitc4d71564761aa5490bc911585bb5021be8c90b54 (patch)
tree2dd01f0f0c1719ba24fc5b160a3074fbec6b93b8
parentb61874b245a082ae77deef4b0948ddbfeed5a8b0 (diff)
downloadmediagoblin-c4d71564761aa5490bc911585bb5021be8c90b54.tar.lz
mediagoblin-c4d71564761aa5490bc911585bb5021be8c90b54.tar.xz
mediagoblin-c4d71564761aa5490bc911585bb5021be8c90b54.zip
beakered_app removed from the paste_app_factory. Deployers should
wrap the app w/ beaker themselves
-rw-r--r--mediagoblin/app.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/mediagoblin/app.py b/mediagoblin/app.py
index f688b989..1ae01686 100644
--- a/mediagoblin/app.py
+++ b/mediagoblin/app.py
@@ -70,9 +70,5 @@ def paste_app_factory(global_config, **kw):
mgoblin_app = MediagoblinApp(
db, user_template_path=kw.get('local_templates'))
- beakered_app = SessionMiddleware(
- mgoblin_app,
- {'session.type': 'file',
- 'session.cookie_expires': True})
- return beakered_app
+ return mgoblin_app