mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00

See test/config.yml for an example file. `sidekiq -C /path/to/config.yml` will use any settings set in the file. Flags passed to sidekiq will override any set in the config file. So, if config.yml looked like: --- concurrency: 50 `sidekiq -C /path/to/that/config.yml -c 75` will set the concurrency to 75.
11 lines
239 B
YAML
11 lines
239 B
YAML
---
|
|
verbose: false
|
|
namespace: test_namespace
|
|
server: 127.0.0.1:1234
|
|
environment: xzibit
|
|
require: ./test/fake_env.rb
|
|
pidfile: /tmp/sidekiq-config-test.pid
|
|
processor_count: 50
|
|
queues:
|
|
- [often, 2]
|
|
- [seldom, 1]
|