~cytrogen/masto-fe

0442fcdbc88c2a77b1216c38d2fb5fe11bec334d — han@highemelry 6 years ago 99c1f08
Change the retry limit in error of web push notification (#11292)

- Change the maximum count of retry for web push notification (Default -> 5).
   - In case of high load of subscribe server, the retries will be repeated many times.
   - Because the retries occupy the default queue, maximum retry count should be reduced.
1 files changed, 1 insertions(+), 1 deletions(-)

M app/workers/web/push_notification_worker.rb
M app/workers/web/push_notification_worker.rb => app/workers/web/push_notification_worker.rb +1 -1
@@ 3,7 3,7 @@
class Web::PushNotificationWorker
  include Sidekiq::Worker

  sidekiq_options backtrace: true
  sidekiq_options backtrace: true, retry: 5

  def perform(subscription_id, notification_id)
    subscription = ::Web::PushSubscription.find(subscription_id)