Skip to content

Instantly share code, notes, and snippets.

@gabeodess
Created April 15, 2015 18:12
Show Gist options
  • Select an option

  • Save gabeodess/8eb03f930e79bad5fa1f to your computer and use it in GitHub Desktop.

Select an option

Save gabeodess/8eb03f930e79bad5fa1f to your computer and use it in GitHub Desktop.
Sidekiq wont start custom queues
$foreman start
14:08:54 web.1 | started with pid 40623
14:08:54 worker.1 | started with pid 40624
14:08:55 web.1 | I, [2015-04-15T14:08:55.814699 #40623] INFO -- : Refreshing Gem list
14:09:00 worker.1 | 2015-04-15T18:09:00.313Z 40624 TID-ouhv27b30 INFO: Booting Sidekiq 3.3.3 with redis options {:url=>nil}
14:09:02 web.1 | I, [2015-04-15T14:09:02.256560 #40623] INFO -- : listening on addr=0.0.0.0:5000 fd=10
14:09:02 web.1 | I, [2015-04-15T14:09:02.325533 #40623] INFO -- : master process ready
14:09:02 web.1 | I, [2015-04-15T14:09:02.337284 #40627] INFO -- : worker=0 ready
14:09:02 web.1 | I, [2015-04-15T14:09:02.338912 #40628] INFO -- : worker=1 ready
14:09:02 web.1 | I, [2015-04-15T14:09:02.341599 #40629] INFO -- : worker=2 ready
14:09:02 worker.1 | 2015-04-15T18:09:02.969Z 40624 TID-ouhv27b30 INFO: Running in ruby 2.2.1p85 (2015-02-26 revision 49769) [x86_64-darwin14]
14:09:02 worker.1 | 2015-04-15T18:09:02.969Z 40624 TID-ouhv27b30 INFO: See LICENSE and the LGPL-3.0 for licensing details.
14:09:02 worker.1 | 2015-04-15T18:09:02.969Z 40624 TID-ouhv27b30 INFO: Upgrade to Sidekiq Pro for more features and support: http://sidekiq.org/pro
14:09:02 worker.1 | 2015-04-15T18:09:02.969Z 40624 TID-ouhv27b30 INFO: Starting processing, hit Ctrl-C to stop
14:09:02 worker.1 | 2015-04-15T18:09:02.974Z 40624 TID-ouhw6eji0 DEBUG: {:queues=>["default"], :labels=>[], :concurrency=>15, :require=>".", :environment=>"development", :timeout=>8, :error_handlers=>[#<Sidekiq::ExceptionHandler::Logger:0x007f8133a83200>], :lifecycle_events=>{:startup=>[], :quiet=>[], :shutdown=>[]}, :dead_max_jobs=>10000, :dead_timeout_in_seconds=>15552000, :verbose=>true, :config_file=>".config/sidekiq.yml", :strict=>true, :tag=>"share_coffee"}
web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb
worker: bundle exec sidekiq -c 15 -v -C .config/sidekiq.yml -e $RAILS_ENV
---
:concurrency: 1
:queues:
- default
- mailers
- [priority, 2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment