about summary refs log tree commit diff
path: root/app/workers
diff options
context:
space:
mode:
authorStarfall <us@starfall.systems>2020-07-23 16:25:58 -0500
committerStarfall <us@starfall.systems>2020-07-23 16:25:58 -0500
commit2b41ed0fd69a7f7a0e17d6f0c6a421805c5e3127 (patch)
treea3ab43415b061112bc614205a3bb96bb9718bbd0 /app/workers
parente3d96a9bc62f57d60dc21906b4b803e346b0a738 (diff)
parent16416e940fd803af92377eee9a1756ef27eed199 (diff)
Merge branch 'glitch' into main
Diffstat (limited to 'app/workers')
-rw-r--r--app/workers/activitypub/processing_worker.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/workers/activitypub/processing_worker.rb b/app/workers/activitypub/processing_worker.rb
index 05139f616..cef595319 100644
--- a/app/workers/activitypub/processing_worker.rb
+++ b/app/workers/activitypub/processing_worker.rb
@@ -3,7 +3,7 @@
 class ActivityPub::ProcessingWorker
   include Sidekiq::Worker
 
-  sidekiq_options backtrace: true
+  sidekiq_options backtrace: true, retry: 8
 
   def perform(account_id, body, delivered_to_account_id = nil)
     ActivityPub::ProcessCollectionService.new.call(body, Account.find(account_id), override_timestamps: true, delivered_to_account_id: delivered_to_account_id, delivery: true)