grimmwerks
grimmwerks

Reputation: 491

sidekiq: deleted queues on sidekiq/queues page -- how to get them back?

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

Answers (1)

Mike Perham
Mike Perham

Reputation: 22208

You have to push a job to them. Queues don't actually exist in Redis unless they contain jobs.

Upvotes: 3

Related Questions