Browse Source

Fix PuSH workers (#6200)

pull/4/head
ThibG 6 years ago
committed by Eugen Rochko
parent
commit
10f6793fd0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/workers/pubsubhubbub/subscribe_worker.rb

+ 1
- 1
app/workers/pubsubhubbub/subscribe_worker.rb View File

@ -20,7 +20,7 @@ class Pubsubhubbub::SubscribeWorker
sidekiq_retries_exhausted do |msg, _e|
account = Account.find(msg['args'].first)
logger.error "PuSH subscription attempts for #{account.acct} exhausted. Unsubscribing"
Sidekiq.logger.error "PuSH subscription attempts for #{account.acct} exhausted. Unsubscribing"
::UnsubscribeService.new.call(account)
end

Loading…
Cancel
Save