Created
May 13, 2022 09:50
-
-
Save sergii/da2f2d55af67418b206d0d361ff1cb1a to your computer and use it in GitHub Desktop.
Example of queues names for Sidekiq
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# sidekiq.yml | |
--- | |
:verbose: false | |
:concurrency: 10 | |
:timeout: 25 | |
:queues: | |
- critical | |
- mailers | |
- default | |
- active_storage_analysis | |
- active_storage_purge | |
- low | |
production: &production | |
:verbose: true | |
staging: | |
<<: *production |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment