From 605e2a417c0757046671265e35a431a5ae97c0c4 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 12 Jun 2017 03:11:12 +0200 Subject: [PATCH] Fix regression from #3672 - Do not use pipeline around zscore (#3704) --- app/services/remove_status_service.rb | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/app/services/remove_status_service.rb b/app/services/remove_status_service.rb index 920774156..a5281f586 100644 --- 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