X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0e9e78ad4e32fb3a14c6e83091efdbe96f2f03d6..e65fffb60a5697ce1991ceb01a15001eb7adb101:/services/api/config/application.rb diff --git a/services/api/config/application.rb b/services/api/config/application.rb index 4211df29d0..1fb11898ea 100644 --- a/services/api/config/application.rb +++ b/services/api/config/application.rb @@ -1,13 +1,31 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require File.expand_path('../boot', __FILE__) require 'rails/all' 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 @@ -34,6 +52,32 @@ 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_record.raise_in_transactional_callbacks = 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 + # whether we own the relevant directory. If we don't, using it is + # likely to either fail or (if we're root) pollute it and cause + # other processes to fail later. + default_cache_path = Rails.root.join('tmp', 'cache') + if not File.owned?(default_cache_path) + if File.exist?(default_cache_path) + why = "owner (uid=#{File::Stat.new(default_cache_path).uid}) " + + "is not me (uid=#{Process.euid})" + else + why = "does not exist" + end + STDERR.puts("Defaulting to memory cache, " + + "because #{default_cache_path} #{why}") + config.cache_store = :memory_store + end end end