From: Tom Hughes Date: Sat, 4 Feb 2012 00:42:47 +0000 (+0000) Subject: Don't eager load models when the database is offline X-Git-Tag: live~6841 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/0605d4aa8bb3b0bdee7807e32437e38dae28e6f4 Don't eager load models when the database is offline --- diff --git a/config/application.rb b/config/application.rb index 0713451e5..8c8f4c926 100644 --- a/config/application.rb +++ b/config/application.rb @@ -63,5 +63,10 @@ module OpenStreetMap unless STATUS == :database_offline config.active_record.schema_format = :sql end + + # Don't eager load models when the database is offline + if STATUS == :database_offline + config.paths["app/models"].skip_eager_load! + end end end