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?
|
|
|
|
require 'site_settings/local_process_provider'
|
|
|
|
Rails.cache = Discourse.cache
|
2022-03-21 10:28:52 -04:00
|
|
|
Rails.application.config.to_prepare do
|
|
|
|
SiteSetting.provider = SiteSettings::LocalProcessProvider.new
|
|
|
|
end
|
2019-06-12 22:58:27 -04:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2022-03-21 10:28:52 -04:00
|
|
|
Rails.application.config.to_prepare do
|
2021-03-19 15:51:13 -04:00
|
|
|
RailsMultisite::ConnectionManagement.safe_each_connection do
|
|
|
|
begin
|
|
|
|
SiteSetting.refresh!
|
2016-08-25 22:47:10 -04:00
|
|
|
|
2021-03-19 15:51:13 -04:00
|
|
|
unless String === SiteSetting.push_api_secret_key && SiteSetting.push_api_secret_key.length == 32
|
|
|
|
SiteSetting.push_api_secret_key = SecureRandom.hex
|
2016-08-25 22:47:10 -04:00
|
|
|
end
|
2021-03-19 15:51:13 -04:00
|
|
|
rescue ActiveRecord::StatementInvalid
|
|
|
|
# This will happen when migrating a new database
|
2014-04-02 19:39:30 -04:00
|
|
|
end
|
2021-03-19 15:51:13 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|