diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-11-16 22:13:07 -0600 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-11-16 22:13:07 -0600 |
commit | d463ce4fe7b5f9ccc23322224506b67765af3f72 (patch) | |
tree | 159c86b0e78ea98059d3cccb380c2741fada8b4b /lib | |
parent | 81a551791d3fcf347072e94298f598aa7b329b12 (diff) |
In the index task, do not cache `Formatter` results.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tasks/monsterfork.rake | 2 |
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 |