mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
17 lines
377 B
Ruby
17 lines
377 B
Ruby
reload_settings = lambda {
|
|
RailsMultisite::ConnectionManagement.each_connection do
|
|
begin
|
|
SiteSetting.refresh!
|
|
rescue ActiveRecord::StatementInvalid
|
|
# This will happen when migrating a new database
|
|
end
|
|
end
|
|
}
|
|
|
|
if Rails.configuration.cache_classes
|
|
reload_settings.call
|
|
else
|
|
ActionDispatch::Reloader.to_prepare do
|
|
reload_settings.call
|
|
end
|
|
end
|