Comment out the "check if the database is up to date" stuff
authorChristopher Allan Webber <cwebber@dustycloud.org>
Wed, 17 Sep 2014 23:07:50 +0000 (18:07 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Wed, 17 Sep 2014 23:08:54 +0000 (18:08 -0500)
... it's presently causing session issues :\

mediagoblin/app.py

index 6923e198109ec7b32212ed3f63ed38884ace6c4d..8027ad8749b99651d7f3d31f17727f65f9f19674 100644 (file)
@@ -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)