2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-02-09 14:58:56 +08:00
|
|
|
# load up git version into memory
|
|
|
|
# this way if it changes underneath we still have
|
|
|
|
# the original version
|
|
|
|
Discourse.git_version
|
|
|
|
|
2019-06-13 10:58:27 +08:00
|
|
|
if GlobalSetting.skip_redis?
|
|
|
|
require "site_settings/local_process_provider"
|
|
|
|
Rails.cache = Discourse.cache
|
2022-03-21 22:28:52 +08:00
|
|
|
Rails.application.config.to_prepare do
|
|
|
|
SiteSetting.provider = SiteSettings::LocalProcessProvider.new
|
|
|
|
end
|
2019-06-13 10:58:27 +08:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2022-03-21 22:28:52 +08:00
|
|
|
Rails.application.config.to_prepare do
|
2021-03-20 03:51:13 +08:00
|
|
|
RailsMultisite::ConnectionManagement.safe_each_connection do
|
|
|
|
begin
|
|
|
|
SiteSetting.refresh!
|
2016-08-26 10:47:10 +08:00
|
|
|
|
2021-03-20 03:51:13 +08:00
|
|
|
unless String === SiteSetting.push_api_secret_key &&
|
|
|
|
SiteSetting.push_api_secret_key.length == 32
|
|
|
|
SiteSetting.push_api_secret_key = SecureRandom.hex
|
2016-08-26 10:47:10 +08:00
|
|
|
end
|
2021-03-20 03:51:13 +08:00
|
|
|
rescue ActiveRecord::StatementInvalid
|
|
|
|
# This will happen when migrating a new database
|
2014-04-03 07:39:30 +08:00
|
|
|
end
|
2021-03-20 03:51:13 +08:00
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|