Fix regression from #3672 - Do not use pipeline around zscore (#3704)

lolsob-rspec
Eugen Rochko 2017-06-12 03:11:12 +02:00 committed by GitHub
parent 3af5774a71
commit 9cda14bd24
1 changed files with 2 additions and 4 deletions

View File

@ -33,10 +33,8 @@ class RemoveStatusService < BaseService
end
def remove_from_followers
redis.pipelined do
@account.followers.local.find_each do |follower|
unpush(:home, follower, @status)
end
@account.followers.local.find_each do |follower|
unpush(:home, follower, @status)
end
end