X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/422afdbae3129f6ba37e3b9860fd02bd97f4dedc..141df02e671d7c559f6d813bde1d792a159f1875:/config/environments/production.rb diff --git a/config/environments/production.rb b/config/environments/production.rb index 9e15487ae..97121d5a7 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -57,7 +57,7 @@ Rails.application.configure do config.log_tags = [:request_id] # Use a different log path in production. - config.paths["log"] = LOG_PATH if defined?(LOG_PATH) + config.paths["log"] = Settings.log_path if Settings.key?(:log_path) # Use a different cache store in production. # config.cache_store = :mem_cache_store @@ -95,7 +95,7 @@ Rails.application.configure do end # Do not dump schema after migrations. - config.active_record.dump_schema_after_migration = false unless STATUS == :database_offline + config.active_record.dump_schema_after_migration = false unless Settings.status == "database_offline" # Enable autoloading of dependencies. config.enable_dependency_loading = true