X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ffc0c0768c4d2dc9aae3d4e3be3cb5584e42a4ba..e39a7d5704932cbec606e85cdca50aa38a1ed053:/services/api/config/initializers/load_config.rb diff --git a/services/api/config/initializers/load_config.rb b/services/api/config/initializers/load_config.rb index 76234d3e4b..787469cca3 100644 --- a/services/api/config/initializers/load_config.rb +++ b/services/api/config/initializers/load_config.rb @@ -6,7 +6,7 @@ rescue LoadError # configured by application.yml (i.e., here!) instead. end -if (File.exists?(File.expand_path '../omniauth.rb', __FILE__) and +if (File.exist?(File.expand_path '../omniauth.rb', __FILE__) and not defined? WARNED_OMNIAUTH_CONFIG) Rails.logger.warn <<-EOS DEPRECATED CONFIGURATION: @@ -26,7 +26,7 @@ $application_config = {} %w(application.default application).each do |cfgfile| path = "#{::Rails.root.to_s}/config/#{cfgfile}.yml" - if File.exists? path + if File.exist? path yaml = ERB.new(IO.read path).result(binding) confs = YAML.load(yaml, deserialize_symbols: true) # Ignore empty YAML file: @@ -69,4 +69,5 @@ config/application.yml: EOS end + config.secret_key_base = config.secret_token end