X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0561bd0c3c07257fd58ded6c7cfa5feeae97af57..39c17737ac69d7693684fe2f95bef0ec235a28bf:/services/api/config/application.rb diff --git a/services/api/config/application.rb b/services/api/config/application.rb index 1fb11898ea..24fd61871d 100644 --- a/services/api/config/application.rb +++ b/services/api/config/application.rb @@ -30,6 +30,9 @@ end module Server class Application < Rails::Application + # The following is to avoid SafeYAML's warning message + SafeYAML::OPTIONS[:default_mode] = :safe + # Settings in config/environments/* take precedence over those specified here. # Application configuration should go into files in config/initializers # -- all .rb files in that directory are automatically loaded. @@ -78,6 +81,9 @@ module Server STDERR.puts("Defaulting to memory cache, " + "because #{default_cache_path} #{why}") config.cache_store = :memory_store + else + require Rails.root.join('lib/safer_file_store') + config.cache_store = ::SaferFileStore.new(default_cache_path) end end end