mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 17:53:23 +08:00
d775338d63
`rake multisite:migrate` runs SeedFu concurently in threads so we need this to be thread safe.
25 lines
608 B
Ruby
25 lines
608 B
Ruby
# frozen_string_literal: true
|
|
|
|
class SeedData::Refresher
|
|
@mutex = Mutex.new
|
|
|
|
def self.refresh!
|
|
return if @refreshed
|
|
|
|
@mutex.synchronize do
|
|
return if @refreshed
|
|
# Fix any bust caches post initial migration
|
|
# Not that reset_column_information is not thread safe so we have to becareful
|
|
# not to run it concurrently within the same process.
|
|
ActiveRecord::Base.connection.tables.each do |table|
|
|
table.classify.constantize.reset_column_information rescue nil
|
|
end
|
|
|
|
@refreshed = true
|
|
end
|
|
end
|
|
end
|
|
|
|
SeedData::Refresher.refresh!
|
|
SiteSetting.refresh!
|