X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/e660e609661edadc1ed5ad49d6e83e936b2f91cd..0d3a9ed9cb47ce3b89ea9eaffbb589f9a9ff6d22:/config/environments/development.rb diff --git a/config/environments/development.rb b/config/environments/development.rb index 75f8fee12..5cb58cf13 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -23,11 +23,15 @@ OpenStreetMap::Application.configure do config.action_dispatch.best_standards_support = :builtin # Raise exception on mass assignment protection for Active Record models - config.active_record.mass_assignment_sanitizer = :strict + unless STATUS == :database_offline + config.active_record.mass_assignment_sanitizer = :strict + end # Log the query plan for queries taking more than this (works # with SQLite, MySQL, and PostgreSQL) - config.active_record.auto_explain_threshold_in_seconds = 0.5 + unless STATUS == :database_offline + config.active_record.auto_explain_threshold_in_seconds = 0.5 + end # Do not compress assets config.assets.compress = false