From: Eugen Rochko Date: Mon, 4 Jun 2018 02:21:15 +0000 (+0200) Subject: Fix missing column in select in mastodon:feeds:build task (#7720) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=c7405fda11e0f19db0f3641720d3feb4e52bb8b7;p=mastodon.git Fix missing column in select in mastodon:feeds:build task (#7720) --- diff --git a/lib/tasks/mastodon.rake b/lib/tasks/mastodon.rake index 8ff29ea9e..de8c0bb86 100644 --- a/lib/tasks/mastodon.rake +++ b/lib/tasks/mastodon.rake @@ -561,7 +561,7 @@ namespace :mastodon do desc 'Generates home timelines for users who logged in in the past two weeks' 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)) end end