Some tasks don't have to run on every tenant. The task to calculate the TSV is only done for records which were present before we added the TSV column, and that isn't going to happen in any tenants because we added the TSV column before adding the tenants table. Similarly, the migration needed for existing polls isn't necessary because there weren't any tenants before we allowed to set the starting/ending time to polls. We aren't adding any tests for these tasks because tests for rake tasks are slow and tests creating tenants are also slow, making the combination of the two even slower, particularly if we add tests for every single task we're changing. We're adding tests for the `.run_on_each` method instead.
20 lines
537 B
Ruby
20 lines
537 B
Ruby
namespace :votes do
|
|
desc "Resets hot_score to its new value"
|
|
task reset_hot_score: :environment do
|
|
models = [Debate, Proposal, Legislation::Proposal]
|
|
|
|
models.each do |model|
|
|
print "Updating votes hot_score for #{model}s"
|
|
|
|
Tenant.run_on_each do
|
|
model.find_each do |resource|
|
|
new_hot_score = resource.calculate_hot_score
|
|
resource.update_columns(hot_score: new_hot_score, updated_at: Time.current)
|
|
end
|
|
end
|
|
puts " ✅ "
|
|
end
|
|
puts "Task finished 🎉 "
|
|
end
|
|
end
|