Browse Source

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

closed-social-glitch-2
Eugen Rochko 6 years ago
committed by GitHub
parent
commit
605e2a417c
1 changed files with 2 additions and 4 deletions
  1. +2
    -4
      app/services/remove_status_service.rb

+ 2
- 4
app/services/remove_status_service.rb 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

Loading…
Cancel
Save