From 31f8909f9b2fb6dbe3633dd6fa1230787ffff5bf Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Wed, 17 Sep 2014 18:07:50 -0500 Subject: [PATCH] Comment out the "check if the database is up to date" stuff ... it's presently causing session issues :\ --- mediagoblin/app.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mediagoblin/app.py b/mediagoblin/app.py index 6923e198..8027ad87 100644 --- a/mediagoblin/app.py +++ b/mediagoblin/app.py @@ -93,7 +93,9 @@ class MediaGoblinApp(object): self.db = setup_database(app_config['run_migrations']) # Quit app if need to run dbupdate - check_db_up_to_date() + ## NOTE: This is currently commented out due to session errors.. + ## We'd like to re-enable! + # check_db_up_to_date() # Register themes self.theme_registry, self.current_theme = register_themes(app_config) -- 2.25.1