You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The sidekiq process run but no jobs are processed.
Expected behavior
A job is enqueued. A job is processed.
Current behavior
No job is processed with or without unique locks.
Worker class
classSidekiqHealthJobincludeLoggingincludeSidekiq::WorkerdefperformUniqueJob.perform_asyncredis=Configuration.redissidekiq_health=Configuration.redis.get"sidekiq_health"ifsidekiq_health && 5.minute.ago.to_i < sidekiq_health.to_itrueelsifsidekiq_healthfalseRollbar.error("Sidekiq Health Job run last time #{Time.at(sidekiq_health)}")elseRollbar.error("Sidekiq Health Job never ran")endendclassUniqueJobincludeLoggingincludeSidekiq::Workersidekiq_options(retry: 3,lock_expiration: 10,unique: :until_executing)defperformsidekiq_health=Configuration.redis.set"sidekiq_health",Time.now.to_iendendend
Describe the bug
The sidekiq process run but no jobs are processed.
Expected behavior
A job is enqueued. A job is processed.
Current behavior
No job is processed with or without unique locks.
Worker class
Additional context
sidekiq (6.0.4)
connection_pool (>= 2.2.2)
rack (>= 2.0.0)
rack-protection (>= 2.0.0)
redis (>= 4.1.0)
sidekiq-unique-jobs (6.0.18)
concurrent-ruby (
> 1.0, >= 1.0.5)> 0)sidekiq (>= 4.0, < 7.0)
thor (
ruby 2.5.7
If a downgrade to 6.0.13 to work again.
The text was updated successfully, but these errors were encountered: