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
|
|
|
|
|
2014-04-03 07:39:30 +08:00
|
|
|
reload_settings = lambda {
|
|
|
|
RailsMultisite::ConnectionManagement.each_connection do
|
|
|
|
begin
|
|
|
|
SiteSetting.refresh!
|
|
|
|
rescue ActiveRecord::StatementInvalid
|
|
|
|
# This will happen when migrating a new database
|
2015-02-09 15:31:05 +08:00
|
|
|
rescue => e
|
|
|
|
STDERR.puts "URGENT: #{e} Failed to initialize site #{RailsMultisite::ConnectionManagement.current_db}"
|
|
|
|
# the show must go on, don't stop startup if multisite fails
|
2014-04-03 07:39:30 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
|
|
|
if Rails.configuration.cache_classes
|
|
|
|
reload_settings.call
|
|
|
|
else
|
|
|
|
ActionDispatch::Reloader.to_prepare do
|
|
|
|
reload_settings.call
|
2013-03-06 02:01:57 +08:00
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|