X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ee411e5154cedd644fe54ccb29d64b6d18cb9bde..352f2a167151e080b871e113d0f1ff9f88dca5a6:/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