beakered_app removed from the paste_app_factory. Deployers should

wrap the app w/ beaker themselves
This commit is contained in:
Christopher Allan Webber 2010-07-18 17:59:40 -05:00
parent b61874b245
commit c4d7156476

View File

@ -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