Reason: You very likely have a model that has a delay attribute.
You can configure Sidekiq to remove its delay method by adding this to your Sidekiq initializer:
Sidekiq.remove_delay!
If you need to keep Sidekiqs delay features, add Sidekiq.hook_rails! before the option above. The sidekiq methods will be prefixed with sidekiq_ then.
Posted by Thomas Eisenbarth to makandra dev (2015-08-06 13:02)