about summary refs log tree commit diff
path: root/app/workers
diff options
context:
space:
mode:
authorJenkins <jenkins@jenkins.ninjawedding.org>2018-01-05 22:17:12 +0000
committerJenkins <jenkins@jenkins.ninjawedding.org>2018-01-05 22:17:12 +0000
commitf6adb409fd8f4bf42c1da54cc1e7e42886612c14 (patch)
tree01ab66d37a57fbe59546f6376e16c8398b5198d8 /app/workers
parentf41b33eb0177b23bd72fede7df94af43da0c7c6b (diff)
parent10f6793fd0af3690a37c868b7bb4418418dc3a7a (diff)
Merge remote-tracking branch 'tootsuite/master' into glitchsoc/master
Diffstat (limited to 'app/workers')
-rw-r--r--app/workers/pubsubhubbub/subscribe_worker.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/workers/pubsubhubbub/subscribe_worker.rb b/app/workers/pubsubhubbub/subscribe_worker.rb
index e350973e1..2e176d1c1 100644
--- a/app/workers/pubsubhubbub/subscribe_worker.rb
+++ b/app/workers/pubsubhubbub/subscribe_worker.rb
@@ -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