Skip to content
Snippets Groups Projects
Commit 605e2a41 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

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

parent f8fe394e
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment