Skip to content

Commit

Permalink
Freshen up config sample
Browse files Browse the repository at this point in the history
  • Loading branch information
mperham committed Jul 3, 2015
1 parent 7bd53fb commit 205f021
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions examples/config.yml
@@ -1,13 +1,19 @@
# Sample configuration file for Sidekiq.
# Options here can still be overridden by cmd line args.
# sidekiq -C config.yml
# Place this file at config/sidekiq.yml and Sidekiq will
# pick it up automatically.
---
:verbose: false
:pidfile: ./tmp/pids/sidekiq.pid
:concurrency: 25
:concurrency: 10
# Set timeout to 8 on Heroku, longer if you manage your own systems.
:timeout: 30
:queues:
- [critical, 3]
- [default, 2]
- [low, 1]

# you can override concurrency based on environment
production:
:concurrency: 25
staging:
:concurrency: 15

0 comments on commit 205f021

Please sign in to comment.