about summary refs log tree commit diff
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2019-11-16 22:13:07 -0600
committermultiple creatures <dev@multiple-creature.party>2019-11-16 22:13:07 -0600
commitd463ce4fe7b5f9ccc23322224506b67765af3f72 (patch)
tree159c86b0e78ea98059d3cccb380c2741fada8b4b
parent81a551791d3fcf347072e94298f598aa7b329b12 (diff)
In the index task, do not cache `Formatter` results.
-rw-r--r--lib/tasks/monsterfork.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/monsterfork.rake b/lib/tasks/monsterfork.rake
index f36cc3915..11c5d86d9 100644
--- a/lib/tasks/monsterfork.rake
+++ b/lib/tasks/monsterfork.rake
@@ -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