X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/87275ec769831e04982a714049ee9d67b6342d68..a3a0940ccf0aeacb45aa7216035a2d815ddf7bcf:/services/api/config/application.rb diff --git a/services/api/config/application.rb b/services/api/config/application.rb index f3f6424b2d..d6fcc9ea09 100644 --- a/services/api/config/application.rb +++ b/services/api/config/application.rb @@ -1,17 +1,50 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require File.expand_path('../boot', __FILE__) -require 'rails/all' +require "rails" +# Pick only the frameworks we need: +require "active_model/railtie" +require "active_job/railtie" +require "active_record/railtie" +require "action_controller/railtie" +require "action_mailer/railtie" +require "action_view/railtie" +# Skip ActionCable (new in Rails 5.0) as it adds '/cable' routes that we're not using +# require "action_cable/engine" +require "sprockets/railtie" +require "rails/test_unit/railtie" + require 'digest' +module Kernel + def suppress_warnings + verbose_orig = $VERBOSE + begin + $VERBOSE = nil + yield + ensure + $VERBOSE = verbose_orig + end + end +end + if defined?(Bundler) - # If you precompile assets before deploying to production, use this line - Bundler.require(*Rails.groups(:assets => %w(development test))) - # If you want your assets lazily compiled in production, use this line - # Bundler.require(:default, :assets, Rails.env) + suppress_warnings do + # If you precompile assets before deploying to production, use this line + Bundler.require(*Rails.groups(:assets => %w(development test))) + # If you want your assets lazily compiled in production, use this line + # Bundler.require(:default, :assets, Rails.env) + end 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. @@ -34,6 +67,13 @@ module Server # Configure sensitive parameters which will be filtered from the log file. config.filter_parameters += [:password] + # Load entire application at startup. + config.eager_load = true + + config.active_support.test_order = :sorted + + config.action_dispatch.perform_deep_munge = false + I18n.enforce_available_locales = false # Before using the filesystem backend for Rails.cache, check @@ -51,6 +91,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