Browse Source

Retry ActivityPub delivery a few more times (#5014)

pull/4/head
ThibG 6 years ago
committed by Eugen Rochko
parent
commit
f7c909e290
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/workers/activitypub/delivery_worker.rb

+ 1
- 1
app/workers/activitypub/delivery_worker.rb View File

@ -3,7 +3,7 @@
class ActivityPub::DeliveryWorker
include Sidekiq::Worker
sidekiq_options queue: 'push', retry: 5, dead: false
sidekiq_options queue: 'push', retry: 8, dead: false
HEADERS = { 'Content-Type' => 'application/activity+json' }.freeze

Loading…
Cancel
Save