commit: 605e2a417c0757046671265e35a431a5ae97c0c4
parent: f8fe394e7a03edacb06c336b3990d6e488336361
Author: Eugen Rochko <eugen@zeonfederated.com>
Date: Mon, 12 Jun 2017 03:11:12 +0200
Fix regression from #3672 - Do not use pipeline around zscore (#3704)
Diffstat:
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/app/services/remove_status_service.rb b/app/services/remove_status_service.rb
@@ -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