From 9ab5a3fca492f7d28b66ef90ccc7880893ac4063 Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Sat, 16 Nov 2019 21:09:31 -0600 Subject: Fix progress text. --- lib/tasks/monsterfork.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/tasks/monsterfork.rake') 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)) } -- cgit