diff options
author | Claire <claire.github-309c@sitedethib.com> | 2023-03-15 03:45:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-15 03:45:15 +0100 |
commit | 1d0ad558ff51ce3e42ef4e4c9a9bed3c4b722d0d (patch) | |
tree | f1ee5da8cf2755f4a16b6300e3f18a6965c84c63 /app/lib/activitypub | |
parent | ed887271f3985b00d97139ae25b73b1f062666be (diff) |
Change sidekiq-bulk's batch size from 10,000 to 1,000 jobs in one Redis call (#24034)
Diffstat (limited to 'app/lib/activitypub')
-rw-r--r-- | app/lib/activitypub/forwarder.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/activitypub/forwarder.rb b/app/lib/activitypub/forwarder.rb index b01d63e58..3a94f9669 100644 --- a/app/lib/activitypub/forwarder.rb +++ b/app/lib/activitypub/forwarder.rb @@ -12,7 +12,7 @@ class ActivityPub::Forwarder end def forward! - ActivityPub::LowPriorityDeliveryWorker.push_bulk(inboxes) do |inbox_url| + ActivityPub::LowPriorityDeliveryWorker.push_bulk(inboxes, limit: 1_000) do |inbox_url| [payload, signature_account_id, inbox_url] end end |