aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/app.py
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2014-09-17 18:07:50 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2014-09-17 18:08:54 -0500
commit31f8909f9b2fb6dbe3633dd6fa1230787ffff5bf (patch)
tree8775403e634c6576e8ed7f49594248ddd2a82f91 /mediagoblin/app.py
parentf0e795df82596e476d9f116d58012e563bb064a4 (diff)
downloadmediagoblin-31f8909f9b2fb6dbe3633dd6fa1230787ffff5bf.tar.lz
mediagoblin-31f8909f9b2fb6dbe3633dd6fa1230787ffff5bf.tar.xz
mediagoblin-31f8909f9b2fb6dbe3633dd6fa1230787ffff5bf.zip
Comment out the "check if the database is up to date" stuff
... it's presently causing session issues :\
Diffstat (limited to 'mediagoblin/app.py')
-rw-r--r--mediagoblin/app.py4
1 files changed, 3 insertions, 1 deletions
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)