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
|
|
|
|
|
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
|