Comment out the "check if the database is up to date" stuff

... it's presently causing session issues :\
This commit is contained in:
Christopher Allan Webber 2014-09-17 18:07:50 -05:00
parent f0e795df82
commit 31f8909f9b

View File

@ -93,7 +93,9 @@ class MediaGoblinApp(object):
self.db = setup_database(app_config['run_migrations']) self.db = setup_database(app_config['run_migrations'])
# Quit app if need to run dbupdate # 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 # Register themes
self.theme_registry, self.current_theme = register_themes(app_config) self.theme_registry, self.current_theme = register_themes(app_config)