mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 12:12:26 +08:00
384135845b
This commit introduces an ultra low priority queue for post rebakes. This way rebakes can never interfere with regular sidekiq processing for cases where we perform a large scale rebake. Additionally it allows Post.rebake_old to be run with rate_limiter: false to avoid triggering the limiter when rebaking. This is handy for cases where you want to just force the full rebake and not wait for it to trickle
9 lines
118 B
YAML
9 lines
118 B
YAML
---
|
|
development:
|
|
:concurrency: 5
|
|
:queues:
|
|
- [critical, 8]
|
|
- [default, 4]
|
|
- [low, 2]
|
|
- [ultra_low]
|