Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot add new queue in sidekiq

Hi guys i cannot add new queue in sidekiq, there are several command like bundle exec sidekiq -q queue_name or via rails console Sidekiq::Queue.new("queue_name") those two commands still cannot create new queue both in redis. Here is the sidekiq web UI sidekiq web ui image , there is no such queue queue_name in those web ui, it does means that queue_name doesn't created right ?

I'm really new into sidekiq, anyone can help me which steps that i missed ?, note: i'm not using file configuration to create new queue sidekiq but just commands. Thanks guys

like image 204
Jais Anasrulloh Ja'fari Avatar asked Dec 15 '22 00:12

Jais Anasrulloh Ja'fari


1 Answers

You have to push a job into the queue for it to be created.

like image 184
Mike Perham Avatar answered Dec 28 '22 05:12

Mike Perham