Skip to content
Snippets Groups Projects
Unverified Commit f8e8e622 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Change incoming activity processing to happen in `ingress` queue (#20264)

parent 89a6b76f
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,7 @@ class Admin::SystemCheck::SidekiqProcessCheck < Admin::SystemCheck::BaseCheck
mailers
pull
scheduler
ingress
).freeze
def skip?
......
......@@ -3,7 +3,7 @@
class ActivityPub::ProcessingWorker
include Sidekiq::Worker
sidekiq_options backtrace: true, retry: 8
sidekiq_options queue: 'ingress', backtrace: true, retry: 8
def perform(actor_id, body, delivered_to_account_id = nil, actor_type = 'Account')
case actor_type
......
---
:concurrency: 5
:queues:
- [default, 6]
- [push, 4]
- [default, 8]
- [push, 6]
- [ingress, 4]
- [mailers, 2]
- [pull]
- [scheduler]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment