In the index task, do not cache `Formatter` results.

master
multiple creatures 2019-11-16 22:13:07 -06:00
parent 81a551791d
commit d463ce4fe7
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ namespace :monsterfork do
ActiveRecord::Base.logger.silence do
i += statuses.count
statuses.each do |s|
s.update_column(:normalized_text, normalize_status(s))
s.update_column(:normalized_text, normalize_status(s, cache: false))
end
end
end