diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-11-16 21:09:31 -0600 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-11-16 21:09:31 -0600 |
commit | 9ab5a3fca492f7d28b66ef90ccc7880893ac4063 (patch) | |
tree | e1286dbb706f839aa9d5696efc9f2f15a67d9392 | |
parent | 1132af15151713f52d8d1e320271185865a79633 (diff) |
Fix progress text.
-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 e55bb1930..f92eb752d 100644 --- a/lib/tasks/monsterfork.rake +++ b/lib/tasks/monsterfork.rake @@ -7,7 +7,7 @@ namespace :monsterfork do total = Status.count Status.find_in_batches do |statuses| - ActiveRecord::Base.logger.info("Indexing statuses #{1+i}-#{statuses.count} of #{total}.") + ActiveRecord::Base.logger.info("Indexing status #{1+i} of #{total}.") i += statuses.count statuses.each do |s| ActiveRecord::Base.logger.silence { s.update_column(:normalized_text, normalize_status(s)) } |