diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-11-10 14:21:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-10 14:21:51 +0100 |
commit | f8e8e622e56262e810529cbe896d817cd28d5bbb (patch) | |
tree | 4b1e0dd461ef250c354c19c4c072aba2a0e7de6b /config | |
parent | 89a6b76f999635e077e9469efd9d94cd6c6d6222 (diff) |
Change incoming activity processing to happen in `ingress` queue (#20264)
Diffstat (limited to 'config')
-rw-r--r-- | config/sidekiq.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/config/sidekiq.yml b/config/sidekiq.yml index 71e7cb33d..05c5b28c8 100644 --- a/config/sidekiq.yml +++ b/config/sidekiq.yml @@ -1,8 +1,9 @@ --- :concurrency: 5 :queues: - - [default, 6] - - [push, 4] + - [default, 8] + - [push, 6] + - [ingress, 4] - [mailers, 2] - [pull] - [scheduler] |