Fix Scheduler::SubscriptionsScheduler (#2834)
* Fix Scheduler::SubscriptionsScheduler, add worker test for it * Change production log level of Sidekiq to "warn" instead of "info"
This commit is contained in:
parent
1f15a15621
commit
b8e166894b
7 changed files with 26 additions and 13 deletions
|
@ -25,7 +25,7 @@ class Pubsubhubbub::ConfirmationWorker
|
|||
|
||||
body = response.body.to_s
|
||||
|
||||
Rails.logger.debug "Confirming PuSH subscription for #{subscription.callback_url} with challenge #{challenge}: #{body}"
|
||||
logger.debug "Confirming PuSH subscription for #{subscription.callback_url} with challenge #{challenge}: #{body}"
|
||||
|
||||
if mode == 'subscribe' && body == challenge
|
||||
subscription.save!
|
||||
|
|
|
@ -7,7 +7,7 @@ class Pubsubhubbub::SubscribeWorker
|
|||
|
||||
def perform(account_id)
|
||||
account = Account.find(account_id)
|
||||
Rails.logger.debug "PuSH re-subscribing to #{account.acct}"
|
||||
logger.debug "PuSH re-subscribing to #{account.acct}"
|
||||
::SubscribeService.new.call(account)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue