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 documentation here says we can call SidekiqUniqueJobs::Digests.delete_by_digest(digest) to clean up dead locks on job death. However, that method appears to be an instance method, not a class method.
Expected behavior
I believe the real call should be SidekiqUniqueJobs::Digests.new.delete_by_digest(digest)
Current behavior
NoMethodError · undefined method `delete_by_digest' for SidekiqUniqueJobs::Digests:Class
Additional context
Version:7.0.0.beta25
The text was updated successfully, but these errors were encountered:
Describe the bug
The documentation here says we can call
SidekiqUniqueJobs::Digests.delete_by_digest(digest)
to clean up dead locks on job death. However, that method appears to be an instance method, not a class method.Expected behavior
I believe the real call should be
SidekiqUniqueJobs::Digests.new.delete_by_digest(digest)
Current behavior
NoMethodError · undefined method `delete_by_digest' for SidekiqUniqueJobs::Digests:Class
Additional context
Version:
7.0.0.beta25
The text was updated successfully, but these errors were encountered: