2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-02-09 01:58:56 -05:00
|
|
|
# load up git version into memory
|
|
|
|
# this way if it changes underneath we still have
|
|
|
|
# the original version
|
|
|
|
Discourse.git_version
|
|
|
|
|
2019-06-12 22:58:27 -04:00
|
|
|
if GlobalSetting.skip_redis?
|
2019-10-08 07:19:05 -04:00
|
|
|
# Requiring this file explicitly prevents it from being autoloaded and so the
|
|
|
|
# provider attribute is not cleared
|
|
|
|
require File.expand_path('../../../app/models/site_setting', __FILE__)
|
|
|
|
|
2019-06-12 22:58:27 -04:00
|
|
|
require 'site_settings/local_process_provider'
|
|
|
|
Rails.cache = Discourse.cache
|
|
|
|
SiteSetting.provider = SiteSettings::LocalProcessProvider.new
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2014-04-02 19:39:30 -04:00
|
|
|
reload_settings = lambda {
|
2018-12-11 22:29:48 -05:00
|
|
|
RailsMultisite::ConnectionManagement.safe_each_connection do
|
2014-04-02 19:39:30 -04:00
|
|
|
begin
|
|
|
|
SiteSetting.refresh!
|
2016-08-25 22:47:10 -04:00
|
|
|
|
|
|
|
unless String === SiteSetting.push_api_secret_key && SiteSetting.push_api_secret_key.length == 32
|
|
|
|
SiteSetting.push_api_secret_key = SecureRandom.hex
|
|
|
|
end
|
2014-04-02 19:39:30 -04:00
|
|
|
rescue ActiveRecord::StatementInvalid
|
|
|
|
# This will happen when migrating a new database
|
|
|
|
end
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
2016-07-03 23:15:29 -04:00
|
|
|
reload_settings.call
|
|
|
|
|
|
|
|
if !Rails.configuration.cache_classes
|
2017-08-31 00:06:56 -04:00
|
|
|
ActiveSupport::Reloader.to_prepare do
|
2014-04-02 19:39:30 -04:00
|
|
|
reload_settings.call
|
2013-03-05 13:01:57 -05:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|