Reputation: 491
I'm birthing sidekiq queues via the Procfile:
worker: bundle exec sidekiq -q default -q events -q summaries -c 5 -v
And in development I mistakenly deleted the queues events and summaries from the sidekiq/queues page. I think they're still there and functioning but I can't SEE them. I thought they would once again be added the minute I called the bundle exec sidekiq again but they're not there....
Something I'm missing?
Upvotes: 0
Views: 988
Reputation: 22208
You have to push a job to them. Queues don't actually exist in Redis unless they contain jobs.
Upvotes: 3