From: Eugen Rochko Date: Mon, 12 Jun 2017 01:11:12 +0000 (+0200) Subject: Fix regression from #3672 - Do not use pipeline around zscore (#3704) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=605e2a417c0757046671265e35a431a5ae97c0c4;p=mastodon.git Fix regression from #3672 - Do not use pipeline around zscore (#3704) --- 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