:concurrency: 5:verbose: false:queues: - [mailer, 5] - [default, 3] - [carrierwave, 3]myshkin: :concurrency: 10production: :concurrency: 25$ bundle exec sidekiq -q mailer
--
You received this message because you are subscribed to the Google Groups "Sidekiq" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sidekiq+u...@googlegroups.com.
To post to this group, send email to sid...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sidekiq/a1d195cc-fc75-4587-bf36-2bacfeae63ba%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Queues don't show in the UI until something is put in them.
--
You received this message because you are subscribed to the Google Groups "Sidekiq" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sidekiq+u...@googlegroups.com.
To post to this group, send email to sid...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sidekiq/2dc5f6d3-8799-419c-b45d-61f49882ac41%40googlegroups.com.
Queues are not created in Redis until something is put in them and the Web UI only shows created queues. The default queue exists because presumably you've already created a job to test Sidekiq. You can create a queue by creating a fake job in rails console:Integer.delay(queue: 'mailer').fooNow the mailer queue should show in the UI, just make sure you clear out that job.