mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:11:08 -06:00
BUGFIX: reload site settings on rails reload in dev
This commit is contained in:
parent
079123f008
commit
d064dd241f
@ -1,7 +1,17 @@
|
||||
RailsMultisite::ConnectionManagement.each_connection do
|
||||
begin
|
||||
SiteSetting.refresh!
|
||||
rescue ActiveRecord::StatementInvalid
|
||||
# This will happen when migrating a new database
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user