Fix missing column in select in mastodon:feeds:build task (#7720)
This commit is contained in:
parent
e18390cfe6
commit
c7405fda11
1 changed files with 1 additions and 1 deletions
|
@ -561,7 +561,7 @@ namespace :mastodon do
|
||||||
|
|
||||||
desc 'Generates home timelines for users who logged in in the past two weeks'
|
desc 'Generates home timelines for users who logged in in the past two weeks'
|
||||||
task build: :environment do
|
task build: :environment do
|
||||||
User.active.select(:account_id).find_in_batches do |users|
|
User.active.select(:id, :account_id).find_in_batches do |users|
|
||||||
RegenerationWorker.push_bulk(users.map(&:account_id))
|
RegenerationWorker.push_bulk(users.map(&:account_id))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue