From: Tom Hughes Date: Thu, 5 Jan 2023 19:51:01 +0000 (+0000) Subject: Allow models to load when the database is offline X-Git-Tag: live~816^2 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/4a5d509adf6f5c13b42bcfbb70a9fe24245ea149 Allow models to load when the database is offline It used to be necessary to stop ActiveRecord loading because it would immediately try and connect the database but with the introduction of switchable database connections it now only connects when a model is used for the first time. Fixes #3858 --- diff --git a/config/application.rb b/config/application.rb index 22c130c99..7b492aea0 100644 --- a/config/application.rb +++ b/config/application.rb @@ -1,18 +1,6 @@ require_relative "boot" -if ENV.fetch("OPENSTREETMAP_STATUS", nil) == "database_offline" - require "active_model/railtie" - require "active_job/railtie" - require "active_storage/engine" - require "action_controller/railtie" - require "action_mailer/railtie" - require "action_view/railtie" - require "action_cable/engine" - require "sprockets/railtie" - require "rails/test_unit/railtie" -else - require "rails/all" -end +require "rails/all" # Require the gems listed in Gemfile, including any gems # you've limited to :test, :development, or :production. @@ -40,9 +28,6 @@ module OpenStreetMap # like if you have constraints or database-specific column types config.active_record.schema_format = :sql unless Settings.status == "database_offline" - # Don't eager load models when the database is offline - config.paths["app/models"].skip_eager_load! if Settings.status == "database_offline" - # Use memcached for caching if required config.cache_store = :mem_cache_store, Settings.memcache_servers, { :namespace => "rails:cache" } if Settings.key?(:memcache_servers)